4
Answers

disable auto-fill in browser for asp.net

Photo of Manohar Gova

Manohar Gova

9y
9.2k
1
Hi
disable auto-fill in browser for asp.net i have tried below options
<form autocomplete="off" id="form1" runat="server">
<asp:TextBox ID="txtname" runat="server" autocomplete="off"></asp:TextBox>
txtaddress.Attributes.Add("autocomplete", "off");
 
not working in mozilla fire fox
 
any suggestions. 

Answers (4)