名称“ViewData”当前上下文中不存在

发布于 2024-12-09 15:24:07 字数 475 浏览 0 评论 0原文

我正在开发我的第一个基于 MVC3 的应用程序,但仍然是一个新手:
我试图在母版页上成功我的 ViewData[],因为它包含一条将在每个页面上使用的消息,但是当我尝试访问它时,它显示:

CS0103:名称“ViewData”确实在当前上下文中不存在

var msg = ViewData["msg"] as string;
        //var msg = ViewBag.msg as string;
        if (msg != null)
        {
            Response.Write (msg);
        } else if (msg == null)
        {
            Response.Write("");
        }

我不确定我是否做错了什么,或者只是无法通过我的 MasterPage 访问 ViewData[]。请帮忙!

I am working over my first application over MVC3 and still kind of a newbie in it:
I’m trying to success my ViewData[] over a master page because its contains a message that would be used over every page, but when I’m trying to access that it says:

CS0103: The name 'ViewData' does not exist in the current context

var msg = ViewData["msg"] as string;
        //var msg = ViewBag.msg as string;
        if (msg != null)
        {
            Response.Write (msg);
        } else if (msg == null)
        {
            Response.Write("");
        }

I am not sure whether I’m doing something wrong or it’s just not possible to access ViewData[] over my MasterPage. Help please!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷血 2024-12-16 15:24:07

您需要将母版页设置为继承System.Web.Mvc.ViewMasterPage

You need to set your master page to inherit System.Web.Mvc.ViewMasterPage.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文