Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Disable Browser from Saving Previous Data of TextBox in asp.net

Tags:

c#

asp.net

Sorry I didn't explain My problem correctly , My problem is that I have a TextBox with AutoComplete Extender and It's works but The browser save the text that i have Entered before so when i start writing to My text Box I have Two lists appear , one from the browser and one from the autocomplete

I want to disable the browser list and keep the autocomplete list only

If any one can help I will be thankful

Thanks in Advance

like image 292
Amira Elsayed Ismail Avatar asked Oct 05 '10 12:10

Amira Elsayed Ismail


1 Answers

<asp:TextBox id="textbox1" runat="server” EnableViewState="false" />
like image 62
bla Avatar answered Oct 18 '22 22:10

bla