ASP.NET MVC:设置自定义名称来呈现 html 元素
我以这种方式生成 html 文本框:
<%: Html.TextBoxFor(m => m.Category) %>
ASP.NET MVC render html:
<input type="text" value="" name="Category" id="Category">
有没有办法手动设置文本框的名称不等于属性“类别”,而是其他东西?
谢谢。
I generate html textbox in this way:
<%: Html.TextBoxFor(m => m.Category) %>
ASP.NET MVC render html:
<input type="text" value="" name="Category" id="Category">
Is there is a way to set manually name of the textbox not eqaul to property "Category", but something else?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须更改默认编辑器模板或为此添加新模板。您可以参考此 博客布拉德·威尔逊 (Brad Wilson) 的帖子提供了一些见解。
You have to change the default editor template or add a new template for this. You can refer this blog post from Brad Wilson for some insight.