Make master page textbox empty

abdal22

New Member
I have 2 \[code\]textboxes\[/code\] on my \[code\]master page\[/code\]. But on the content page when a user logs in, and \[code\]Firefox\[/code\] gives the message "remember password for ...", if I click 'yes' then values appear automatically in the \[code\]master page\[/code\] \[code\]texboxes\[/code\]. In the \[code\]pageload\[/code\] of the \[code\]master page\[/code\] I have: \[code\]protected void Page_Load(object sender, EventArgs e) { HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1)); Response.Cache.SetNoStore(); textbox1.text=""; textbox2.text=""; }\[/code\]But that creates more problems. Please help me on this issue.
 
Back
Top