我在项目的许多地方使用了带有重写ID的RadioButtonFor(),但在一个地方我的行为很奇怪。渲染的输入控件有两个ID属性,一个是小写“id”,其值是赋值属性的值,另一个是“Id”,其值是我指定的ID值....
<%: Html.RadioButtonFor(Function(model) model.HasAccount, False, New With {.id = "HasAccount_No"})%>
..这是渲染为......
<input Id="HasAccount_No" id="HasAccount" name="HasAccount" type="radio" value="False" />
有关我如何解决这个问题的想法吗?