我是一个 Winforms 人,正在学习 ASP.Net。正在从教程中使用 Razor 学习 MVC 4。这是我的代码。
@using MVC_Employee.Models;
@{
var model = new Employee()
{
Name = "Rapsy Tree",
Department = "Development",
JoinTime = DateTime.Now,
};
}
<div>
<h1>@model.Name</h1> // Getting error in typing Name and also VS intellisense not populating this.
</div>
错误
编译时错误:Tag 'h1' not closed
运行时错误:
说明:在编译服务此请求所需的资源期间发生错误。请查看以下特定错误详细信息并适当修改您的源代码。
编译器错误消息:CS1031:预期类型
Source Error:
Line 38: Line 39: Line 40: public class
_Page_Views_employee_employee_cshtml : System.Web.Mvc.WebViewPage<.Title</h1>> { Line 41: Line 42:
#line hidden
好吧,我知道在视图中使用模型是违反 MVC 规则的,但我只是想学习剃刀语法。有人可以帮我理解错误吗?谢谢。