Click here to Skip to main content
15,896,201 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to clear cache memory for login form? i created one login form but whenever i try to login i just click tat username textbox means it shows more than 20 names!!!! how to i clear that??????
Posted
Comments
saud_a_k 7-Nov-12 4:26am    
won't <asp:TextBox AutoCompleteType=None.... for the username textbox work?

1 solution

What you are describing is browser autosuggestion.
Just add some guid like string to name of input tag. Browser remember forms inputs name attributes.
HTML
<input name="login(some guid, session id)">

Ofcourse you cannot use simply asp:Textbox because those have automatic names.
Just copy this login value to some asp:TextBox which is hidden from user or retrive this value by your self from Request.Form collection
 
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