但是只改变了id,没有改变name属性,为什么? -6ren">
gpt4 book ai didi

html - MVC2 : Impossible to change the name with TextBoxFor?

转载 作者:太空狗 更新时间:2023-10-29 14:39:08 24 4
gpt4 key购买 nike

我想像这样为文本框手动定义 ID 和名称:

<%: Html.TextBoxFor(model => model.Name, new { @id = "txt1", @name = "txt1" })%>

但是只改变了id,没有改变name属性,为什么?

<input id="txt1" name="Name" type="text" value="">

谢谢!

最佳答案

没关系:

<%: Html.TextBoxFor(model => model.Name, new { Name = "txt1" })%> 

你会写“姓名”而不是“姓名”吗?

输出:

<input  name="txt1" type="text" value=""> 

关于html - MVC2 : Impossible to change the name with TextBoxFor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6064363/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com