To make Text box Read only (or Non-Editable) without disable it and appear on gray style by adding the following attributes to TextBox tag
<asp:TextBox ID="txtBox1" runat="server" onkeypress="return
false;" onpaste="return false;" Text="Read Only TextBox" />
OR
<asp:TextBox ID="txtBox2" runat="server" ReadOnly="true" Text="Read Only
TextBox" />
contenteditable="false" Or unselectable="on"
No comments:
Post a Comment