TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
saleem usmani
NA
146
19.3k
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?
Reply
Answers (
2
)
Gridview - Update field while being on row edit mode
how to check if gridview is empty or not ?