如何使用 ViewData 在母版页中显示消息?
如何在主页上显示消息。消息由操作发送。
public ActionResult DisplayMessage()
{
ViewData["hello"] = "Hello!";
return View();
}
How can I display a message on the master page. The message is sent by the action.
public ActionResult DisplayMessage()
{
ViewData["hello"] = "Hello!";
return View();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这实际上很简单。只需在您的控制器中添加以下内容:
然后在您的
MasterPage
中,您只需添加以下代码即可查找它,如果存在,则对其执行某些操作:This is actually pretty simple. Just add the following in your controller:
Then in your
MasterPage
you can just add the following code to look for it and if it is there do something with it:在您的视图中,执行以下操作:
如果您想要将此数据放置在母版页中视图之外的另一个区域中,则需要定义一个新的内容占位符。
母版页:
查看:
In your view, do the following:
If you want to place this data in another area outside of your view within your master page, you will need to define a new content placeholder.
Master Page:
View: