asp.net-mvc-2 – Asp.net MVC标签

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-2 – Asp.net MVC标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下内容
<label for="Forename">Forename</label>
 <%= Html.TextBoxFor(m => m.Customer.Name.Forename) %>

这个问题是它被渲染为

<label for="Forename">Forename</label>
<input type="text" value="" name="Customer.Name.Forename" id="Customer_Name_Forename">

不是我想要的.

我想要一个扩展来正确渲染标签(即使用具有输入id值的for =“”属性),在我编写自己的扩展之前,MVC 2中有什么东西可以做到这一点吗?

解决方法

<%= Html.LabelFor(m => m.Customer.Name.Forename) %>
<%= Html.TextBoxFor(m => m.Customer.Name.Forename) %>
原文链接:https://www.f2er.com/aspnet/249141.html

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