saleem usmani

saleem usmani

  • NA
  • 146
  • 18.8k

How to remove auto fill text in textbox

Feb 28 2019 5:17 AM
What I have tried: I tried many things, still have the problem. tried code behind ::
txtSEmail.Attributes.Add("autocomplete", "false");
 
and jquery ::
$(document).ready(function () {
$('#txtSEmail').attr('autocomplete', 'off');
});
 
and server side ::
<asp:TextBox ID="txtSEmail" runat="server" Width="175px" class="txtBox" autocomplete="off">
or
 
<asp:TextBox ID="txtSEmail" runat="server" Width="175px" class="txtBox" AutoCompleteType="Disabled">
 
but my page call master page
 
Is there any other solution for this problem?

Answers (2)