According to your description and needs, i think autocomplete could make the textbox don't write text from browser automatically. About how to set it, you could refer to this link:
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
According to your description, as far as i know, you could remove type="password" from textbox, this method could prevent trigger the remember username and password popup.
Now if you input text in 'password' textbox, it will show value instead of '*******', you need use js to achieve it at this time. Please check this plugin:
MSDN Community Support
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
Member
183 Points
295 Posts
Please Help Me To Block Password Remember Pop Up On Chrome Browser using asp.net.
Jan 12, 2018 04:19 AM|Jayesh.Dalvi|LINK
Hi,
Please Help,
I need to block "Remember Password" Pop up on chrome browser for my Login Page web form.
I tried autocomplete="off" for textbox controls but its not able to do that.
Please help me to do this using c#,Asp.net.
I tried
Please Help,
Thanks,
Regards,
Jayesh.(From India,Maharastra)
Participant
780 Points
301 Posts
Re: Please Help Me To Block Password Remember Pop Up On Chrome Browser using asp.net.
Jan 12, 2018 04:56 AM|pon_prabhu|LINK
The below forum link may help you..
https://forums.asp.net/t/1961202.aspx?Prevent+browser+from+remebering+password+ASP+Net+
Member
183 Points
295 Posts
Re: Please Help Me To Block Password Remember Pop Up On Chrome Browser using asp.net.
Jan 12, 2018 06:42 AM|Jayesh.Dalvi|LINK
Hi pon_prabhu,
Thanks for your reply.
I tried various options on the suggested link.
When I clear history of chrome browser and retry all options as suggested,It still shows dialog box of remembering password.
Please help if any other solution if you have any with you,Please.
Thanks,
Regards,
Jayesh.
Contributor
6430 Points
2693 Posts
Re: Please Help Me To Block Password Remember Pop Up On Chrome Browser using asp.net.
Jan 16, 2018 02:16 AM|Eric Du|LINK
Hi Jayesh.Dalvi,
According to your description and needs, i think autocomplete could make the textbox don't write text from browser automatically. About how to set it, you could refer to this link:
http://www.webcodeexpert.com/2013/10/how-to-disableturn-off-browser.html
You need function is disable password remember pop up on chrome browser, i think this is browser behavior, so you can not control it in the asp.net.
But you could remind user set it in the browser, please check this tutorial:
https://www.laptopmag.com/articles/disable-chrome-passwords
Best Regards,
Eric Du
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
Member
183 Points
295 Posts
Re: Please Help Me To Block Password Remember Pop Up On Chrome Browser using asp.net.
Jan 16, 2018 03:59 AM|Jayesh.Dalvi|LINK
Respected Eric Du Sir,
Thanks for your reply.
If its possible in other software language can you please give me the guidance about it.
Thanks,
Regards,
Jayesh.(From India,Maharashtra)
Contributor
6430 Points
2693 Posts
Re: Please Help Me To Block Password Remember Pop Up On Chrome Browser using asp.net.
Jan 17, 2018 04:09 AM|Eric Du|LINK
Hi Jayesh.Dalvi,
According to your description, as far as i know, you could remove type="password" from textbox, this method could prevent trigger the remember username and password popup.
Now if you input text in 'password' textbox, it will show value instead of '*******', you need use js to achieve it at this time. Please check this plugin:
https://github.com/MathieuLoutre/jquery-mask-password
Best Regards,
Eric Du
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.
Member
183 Points
295 Posts
Re: Please Help Me To Block Password Remember Pop Up On Chrome Browser using asp.net.
Jan 17, 2018 05:36 AM|Jayesh.Dalvi|LINK
Respected Eric Du Sir,
Thanks for giving solution on Password Masking.
I used your given information on my web form like below:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Password Masker</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="../dist/jquery.mask-password.js"></script>
<script src="Scripts/jquery-1.10.2.intellisense.js"></script>
<script>
$(function() {
$("[id*=txtusername]").maskPassword(2000)
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td>
<asp:TextBox ID="txtusername" runat="server"></asp:TextBox>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
Thank you again,
Thanks,
Regards,
Jayesh.(From India,Maharastra)