Click here to Skip to main content
15,917,061 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am trying to make a Textbox for A/c No. submit form in asp.net when i submit form, after submission form and then clear (txtbox.Text=Null) text box, double click on that text box A/c No. is Showing below.
How can i Clear permanently and Remove it
Posted
Updated 22-Feb-14 7:05am
v2
Comments
Not clear.
mukesh mourya 22-Feb-14 13:08pm    
ok ... in simple word, how can i Remove those text box cookies which r remember by this textbox after Submission value of textbox.....
You can assign blank value to the TextBoxes on load of Page.
mukesh mourya 22-Feb-14 13:15pm    
no not that auto completed type value which r remembered by text box
Okay, check my answer. :)

1 solution

Prevent textbox autofill with previously entered values[^].
ASP.NET
<asp:TextBox id="Textbox1" runat="server" autocomplete="off"></asp:TextBox>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900