如何在 Asp.Net MVC 中设置 HiddenFieldFor 的默认值
我正在将 HiddenFor 与模型绑定一起使用,该模型绑定是对其的绑定值。 我想将绑定值重置为零。我该怎么做?
我尝试过这个,但它不起作用......
<% foreach (var item in Model ) { %>
<%: Html.HiddenFor(model => model.ID,new { @value="0"})%>
<% } %>
i am using HiddenFor with model binding which is binding value to it.
i want to reset the binded value to zero.How can i do it?
i tried this but it is not working...
<% foreach (var item in Model ) { %>
<%: Html.HiddenFor(model => model.ID,new { @value="0"})%>
<% } %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为此创建自己的帮助扩展:
You can create your own helper extension for that:
只需将控制器操作中模型的
ID
属性设置为0
即可。Simply set the
ID
property of your model in the controller action to0
.