asp.net TextBox控件设置ReadOnly后,不能回传。
程序员文章站
2024-03-09 14:10:29
很奇怪,以前都没有过这样的怪问题,在别人机器上都能正常,想到可能和asp.net的版本有关系。 我用的是 asp.net 2.0,当改成 asp.net 1.0,就正常了,...
很奇怪,以前都没有过这样的怪问题,在别人机器上都能正常,想到可能和asp.net的版本有关系。
我用的是 asp.net 2.0,当改成 asp.net 1.0,就正常了,textbox控件readonly=true,能回传。
在 asp.net 1.0 中是readonly=true会回传的。
在 asp.net 2.0 中是readonly=true就不会回传了。
解决的方法:
<asp:textbox id="username" runat="server" readonly="true"></asp:textbox>
去掉readonly="true",改成
<asp:textbox id="username" runat="server"></asp:textbox>
在后台代码中加入,控制只读属性
username.attributes.add("readonly", "true");
这样在 asp.net 2.0 中只读的textbox控件也能实现回传。
我用的是 asp.net 2.0,当改成 asp.net 1.0,就正常了,textbox控件readonly=true,能回传。
在 asp.net 1.0 中是readonly=true会回传的。
在 asp.net 2.0 中是readonly=true就不会回传了。
解决的方法:
<asp:textbox id="username" runat="server" readonly="true"></asp:textbox>
去掉readonly="true",改成
<asp:textbox id="username" runat="server"></asp:textbox>
在后台代码中加入,控制只读属性
username.attributes.add("readonly", "true");
这样在 asp.net 2.0 中只读的textbox控件也能实现回传。