我正在编写我的第一个 ASP.NET MVC 应用程序,但我遇到了一个大问题。我想制作一个代表表单的控件,但是当我尝试生成标签和文本框时,它返回给我一个空白页面。
所以,这是我的模型文件(MyModel.cs):
namespace MyNamespace.Models
{
public class MyModel
{
[Required(ErrorMessage = "You have to fill this field")]
[DisplayName("Input name")]
public string Name{ get; set; }
}
}
这是带有我的控件的 MyFormControlView.ascx 文件:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<MyNamespace.Models.MyModel>"%>
<div>
<%
using (Html.BeginForm())
{
Html.LabelFor(m => m.Name);
Html.TextBoxFor(m => m.Name);
Html.ValidationMessageFor(m => m.Name);
}
%>
</div>
这是我在其中呈现控件的 Index.aspx 文件:
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Main.Master" Inherits="System.Web.Mvc.ViewPage<System.Collections.IEnumerable>" %>
<asp:Content runat="server" ID="MainContent" ContentPlaceHolderID="MainContent">
This is my control test!
<%Html.RenderPartial("MyFormControlView", new MyNamespace.Models.MyModel { Name = "MyTestName"}); %>
</asp:Content>
所以,当我运行我的应用程序时,结果是孤独的标题:“这是我的控制测试!” 并且生成的页面上没有标签或文本框。如果我检查生成页面的源代码,我可以看到我的<div>
块,但它的内部文本是空的。