How to disabled Type Functionality in Asp Webform TextBox ?

 

How to disabled Type Functionality in Asp Webform TextBox ?

Sometimes we need to without type anything text box get a value , Like when Textmode is calender that time only give Date Choose option 

Example

<asp:TextBox ID=”txtDate” runat=”server” TextMode=”Date”></asp:TextBox>

Add into textbox : onkeydown=”return false;” 

This event doesn’t allow to insert or type from keyboard.

onpaste=”return false;” 

This does not allow to Paste text into Textbox


<asp:TextBox ID=”txtDate” runat=”server” TextMode=”Date” onpaste=”return false;” onkeydown=”return false;”></asp:TextBox>


Now, User not able paste and type anything into the textbox.

Post a Comment (0)
Previous Post Next Post