TextBox服务器控件只读设置并且能保存内容(通过js赋值的情况)
时间:2010-12-09 来源:天蓝-
<asp:TextBox ID="txtStartDate" runat="server" Width="80px" ReadOnly="true"></asp:TextBox>
下面的设置可以实现只读,并且回发数据(或者通过js设置控件只读)
<asp:TextBox ID="txtStartDate" runat="server" Width="80px" onFocus="this.blur();"></asp:TextBox>
相关阅读 更多 +