我的视图文件夹中有一个文件用户名为UserViewControl.cshtml.
我的代码在实际视图(Users.cshtml)中是:
@Html.RenderPartial("RegisterViewControl")
错误:最好的重载方法匹配’System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)’有一些无效的参数
整个视图文件夹可能会在将来移动,我不想像这样完全键入路径:
@Html.RenderPartial("~/Views/Users/RegisterViewControl.cshtml")
RegisterViewControl.cshtml中的代码:
@model SampleMVC.Web.viewmodels.RegisterModel @using (Html.BeginForm("Register","Auth",FormMethod.Post,new { Id = "ERForm" })) { @Html.TextBoxFor(model => model.Name) @Html.TextBoxFor(model => model.Email) @Html.PasswordFor(model => model.Password) }
这是一个由ajax提交的表单,但我想要viewmodel中的所有验证.