asp.net-mvc – HtmlHelper NameFor方法

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – HtmlHelper NameFor方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有任何 Html.NameFor功能已经实现,获取一个模型项目的名称html属性

我想在我的Razor视图中使用以下代码

<input type="text" value="@Model.User.Email" name="@Html.NameFor(x => x.User.Email)">

解决方法

Html.NameFor现已包含在MVC 4中.
原文链接:https://www.f2er.com/aspnet/246867.html

猜你在找的asp.Net相关文章