//part of index.cshtml
@{
ViewBag.Title = "Home";
}
<body>
<h2>Home</h2>
<%= ViewData["greeting"] %> , world (from the view)!
</body>
//homeController
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace PartyInvites_2.Controllers
{
public class homeController : Controller
{
//
// GET: /home/
public ViewResult Index()
{
int hour = DateTime.Now.Hour;
ViewData["greeting"] = (hour < 12 ? "good morning" : "good evening");
return View();
}
}
}
大家好,这是我第一次在这里问问题,我刚刚开始学习和探索asp .net MVC 4.5我试图找出html助手工作但显然当我在broswer上运行应用程序时我得到了&lt; %= ViewData [“greeting”]%&gt; ,世界(从视图)!但不是帮助者ViewData的价值要么我做错了,要么视觉工作室不支持HTML助手,或者你必须改变设置才能使它工作,我尝试下载更新,但它也没有用,我也尝试在.net框架3.5,4和4.5选项下制作新项目,但我似乎根本不工作,任何帮助将不胜感激,谢谢!