Hi,
I was answering a post todo with textboxies maintaining their values when posted back. My fix was to disable viewstate on that control, but forsome strange reason it does work!?
Does anyone know why? Have the implemented the persistance as control state? Its seems rather strange we cant turn that off!?
<asp:TextBox runat="server" EnableViewState="False" />
<asp:Button runat="server" Text="Click me" />
The default behaviour for an input field is not hold its value, so its definatly asp.net "helping out"!
<input />
<asp:Button runat="server" Text="Click me" />
...
Go to the complete details ...