mvc.net 4视图未显示ViewBag.Message

时间:2015-12-05 11:39:04

标签: c# asp.net-mvc view controller

我在visual studio 2012中创建了空的mvc.net 4应用程序。 我添加了一个" Service"控制器:

public class ServiceController : Controller
    {
        //
        // GET: /Service/s

        public ActionResult Index()
        {
            ViewBag.text = "EEEE";
            return View();
        }

    }

我右键单击了ActionResult,并添加了一个名为" Index"的视图,我输入了这段代码:

@{
    ViewBag.Title = "Index";
}
<h2>Index</h2>
<br>
<h2>@ViewBag.Message</h2>

当我去链接&#34; http://localhost:4376/Service/Index&#34; ,我得到的所有输出是:&#34;

索引

,并且没有&#34; EEEE&#34;显示的文字。我做错了什么?

1 个答案:

答案 0 :(得分:6)

ViewBag.text不是ViewBag.Message。将视图代码更改为

<h2>@ViewBag.text</h2>

或控制器代码

ViewBag.Message = "EEEE";