I need to clear the textbox text after page load when i run my application i will see a login page but the password is displayed in the form of dots and after getting logged out again it appears as dots i should display it empty instead of showing dots and this happens only for password text box i tried in many ways by taking txtpassword.text="";
in page load also i did txtpassword.text=string.empty;
but nothing works for me how can i do this
<asp:TextBox ID="txtpassword" runat="server" Width="180px" Height="20px"></asp:TextBox>