How to remove Up Down arrow keys from asp:textbox texmode:date
? I have textbox with textmode date and I just want the calender arrow ?? how can I achieve this? in picture how can I disable the marked area controls??
<asp:TextBox Width="95%" ID="tourEndDate" runat="server" TextMode="Date" onkeypress="return false" onKeyDown="return false"></asp:TextBox></td>
Just use this:
Or you can use datepicker. Just
Download
AjaxControlToolkit.dll
from web, add it to bin folder, then Add reference and then addto your aspx page. Style Part
Your TextBox
It will appear like this.