tags:

views:

23

answers:

1

Even though "Text" property is set to Text=""

asp:TextBox MaxLength="256"  runat="server" ID="passwordTxt" TextMode="Password" Text="" 

I also tried this on Page_load :-

passwordTxt.Text="";

I am still seeing 5 dots in the Password text box..How to make it go away ? Why is it there anyway ? like why ?

[EDIT]

I was not able to see Bold, Code tag buttons when posting this ques..so couldnt include my code lines inside of code tags..whats wrong with this website ??

[EDIT2] ok I can see the buttons now

+2  A: 

It's probably the browser auto-populating for you. View the source, it will be empty.

Noon Silk
yeah I figured..but now that I have cleared cache, form history and reloaded the page..it still is displaying that default text..Why now ? So is it the browser only ??coz the text box got no text...its empty only..its Firefox btw
Serenity
It is the browser. Try it in a different browser. The passwords are stored in a seperate area, not in the cache or form history. They are under "Saved Passwords" in Firefox.
Noon Silk
oh ok..didnt know that..thnx..its not displaying default text in IE..was firefox only
Serenity