tags:

views:

58

answers:

4

Hi ,

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

+1  A: 
<asp:TextBox id="textbox1" runat="server” EnableViewState="false" />
Lee Sy En
A: 

use EnableViewState="False" attribute on textBox element

<asp:TextBox id="txt1" runat="server" EnableViewState="false" />
Sachin Shanbhag
A: 

Does EnableViewstate="false" not work? The value will be retained on postbacks, though, because the value is posted to the server, you just won't get a "textchanged" event.

Joachim VR
A: 

If u didn't find ur ansewer then, add autocomplete property off autocomplete="off" is not provided by .net. it is HTML input property. just type it. it will work surely

Ranzan