我有一个名为Default.master
的母版页。我想使用ViewBag.Title
设置标题。在我的控制器上我有:
public ActionResult Index()
{
ViewBag.Title = "Home";
return View();
}
我的Home
视图使用Default.master
作为主视图页面。在我正在使用的主视图页面上:
<title><%= ViewBag.Title %></title>
但是我收到了这个错误:
The call is ambiguous between the following methods or properties: 'System.IO.TextWriter.Write(string, params object[])' and 'System.IO.TextWriter.Write(char[])'
如何正确使用它?
答案 0 :(得分:7)
尝试:
<title><%= (string) ViewBag.Title %></title>
答案 1 :(得分:7)
答案 2 :(得分:1)
您的ViewBag.Title的值为null。 也许有一些例外情况发生了。 只有在这种情况下才会抛出含糊不清的异常