gpt4 book ai didi

asp.net-mvc - 标记 'h1' 未关闭

转载 作者:行者123 更新时间:2023-12-01 10:52:14 24 4
gpt4 key购买 nike

我是一名 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>

错误

编译时错误:标记“h1”未关闭

运行时错误:

描述:编译服务此请求所需的资源期间发生错误。请查看以下特定错误详细信息并适当修改您的源代码。

编译器错误消息: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

好吧,我知道这违反了在 View 中使用模型的 MVC 规则,但我只是想学习 Razor 语法。有人可以帮我理解错误吗?谢谢。

最佳答案

尝试添加空格:

<h1> @employee.Name </h1>

Take a look at this question

关于asp.net-mvc - 标记 'h1' 未关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17722494/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com