Friday 30 November 2012

how disable previous entered textbox value in asp.net

enter image description here

for that u can use like this

in  .aspx page

<asp:TextBox id="Textbox1" runat="server" autocomplete="off"></asp:TextBox>

in .cs Page

Textbox1.Attributes.Add("autocomplete", "off");

No comments:

Post a Comment