2
Answers

How to remove auto fill text in textbox

saleem usmani

saleem usmani

6y
616
1
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)