473,804 Members | 4,066 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

"Do you want Windows to remember this password" - no!

In asp.net, is there any way of stopping the browser from outputting the
message..

"Do you want Windows to remember this password, so that you don't have to
type it again the next time you visit this page"

The customer doesn't want their users remembering their password as it's
confidential data they're viewing, so don't want them to even have the
choice. Is there something we can add to the pages to stop it asking ?

--
Adrian Parker
Ingenuity At Work Ltd
Nov 20 '06 #1
4 4030
Yes, you can add the "autocomple te" attribute with the value "off".

If you have a server side textbox for the password field, you can do
something like:

passwordTextBox .Attributes.Add ("autocomplete" ,"off")

"Adrian Parker" <ap******@nospa m.nospamwrote in message
news:ef******** *****@TK2MSFTNG P06.phx.gbl...
In asp.net, is there any way of stopping the browser from outputting the
message..

"Do you want Windows to remember this password, so that you don't have to
type it again the next time you visit this page"

The customer doesn't want their users remembering their password as it's
confidential data they're viewing, so don't want them to even have the
choice. Is there something we can add to the pages to stop it asking ?

--
Adrian Parker
Ingenuity At Work Ltd


Nov 20 '06 #2
Thanks Marina, found another way of doing it globally..

<form id="Form1" method="post" runat="server" autocomplete="o ff">

any problem with this ?

"Marina Levit [MVP]" <so*****@nospam .comwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
| Yes, you can add the "autocomple te" attribute with the value "off".
|
| If you have a server side textbox for the password field, you can do
| something like:
|
| passwordTextBox .Attributes.Add ("autocomplete" ,"off")
|
| "Adrian Parker" <ap******@nospa m.nospamwrote in message
| news:ef******** *****@TK2MSFTNG P06.phx.gbl...
| In asp.net, is there any way of stopping the browser from outputting the
| message..
| >
| "Do you want Windows to remember this password, so that you don't have
to
| type it again the next time you visit this page"
| >
| The customer doesn't want their users remembering their password as it's
| confidential data they're viewing, so don't want them to even have the
| choice. Is there something we can add to the pages to stop it asking ?
| >
| --
| Adrian Parker
| Ingenuity At Work Ltd
| >
| >
|
|
Nov 20 '06 #3
Oh, don't know, never tried it. It very well may work, I just knew of the
input control level attribute.

"Adrian Parker" <ap******@nospa m.nospamwrote in message
news:uZ******** ******@TK2MSFTN GP06.phx.gbl...
Thanks Marina, found another way of doing it globally..

<form id="Form1" method="post" runat="server" autocomplete="o ff">

any problem with this ?

"Marina Levit [MVP]" <so*****@nospam .comwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
| Yes, you can add the "autocomple te" attribute with the value "off".
|
| If you have a server side textbox for the password field, you can do
| something like:
|
| passwordTextBox .Attributes.Add ("autocomplete" ,"off")
|
| "Adrian Parker" <ap******@nospa m.nospamwrote in message
| news:ef******** *****@TK2MSFTNG P06.phx.gbl...
| In asp.net, is there any way of stopping the browser from outputting
the
| message..
| >
| "Do you want Windows to remember this password, so that you don't have
to
| type it again the next time you visit this page"
| >
| The customer doesn't want their users remembering their password as
it's
| confidential data they're viewing, so don't want them to even have the
| choice. Is there something we can add to the pages to stop it asking
?
| >
| --
| Adrian Parker
| Ingenuity At Work Ltd
| >
| >
|
|


Nov 20 '06 #4
Thanks for Marina's suggestion.

Hi Adrian,

yes, you can surely apply the "autocomple te attribute on a html <form>
element if you do not want any input field in an html <formto utilize
autocomplete feature. Here is the msdn reference which detailed descrbie
this:

#Using AutoComplete in HTML Forms
http://msdn.microsoft.com/workshop/a...vr.asp?frame=t
rue

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 21 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3344
by: twhan twhan via .NET 247 | last post by:
Hi, currently i am developing a Radius server application. Cananyone show me how can i unpack the "User-Password" attribute sothat i can get back the password in plain text so that i canverify it against my database. For example, the user entered password "testpassword". Assumethat the shared secret between the NAS and my radius server is"testshared". I am totally unfamiliar with .NET encryption (MD5,XOR), so please provide some sample codes if...
1
3517
by: Luis | last post by:
I use CDO to send an email to users as part of a 'Reset Password' functionality I have on a intranet site. I use: METADATA TYPE="typelib" UUID="CD000000-8B95-11D1-82DB- 00C04FB1625D" NAME="CDO for Windows 2000 Library" in my asp page to send the e-mail (via Exchange 2003). It works fine if I host the site on a Windows 2000 box, but I recently upgraded my dev box to Windows XP (SP1) and the functionality has stopped working - the email...
3
2415
by: laredotornado | last post by:
Hello, I have a simple login script. I have the pages login.php login_response.php login_success.php login_failure.php What I want to do is have a checkbox on the login.php page where if the user checks it and logs in successfully, upon closing the browser and returning to the login.php page, they are automatically redirected to
3
3594
by: Andyza | last post by:
My prod box consists of the following: - Windows 2003 Server - Exchange 2003 If I use cdoConfig to send emails from my .asp application do I need to include the following typelib on my .asp page if I'm running Exchange 2003: <!--METADATA TYPE="typelib" UUID="CD000000-8B95-11D1-82DB-00C04FB1625D" NAME="CDO for Windows 2000 Library" -->
1
4556
by: Norm | last post by:
Hi, I've got a VBA Access application, and I want to remove the "Type a question for help" box from the menubar? How can I do this? Thanks, Norm
5
11367
by: Dave | last post by:
How do I check in a Windows Forms app if any controls have changed? I have a form that collects data, and I want to prompt the user if they try to exit the app, or load a new file, without saving changes that have been made. In MFC/Win32, you'd trap the WM_COMMAND/EN_CHANGE notification messages, etc. But, this doesn't seem to happen in Windows Forms. I tried Spy-ing a windows forms app, and the WM_COMMAND messages don't even get sent...
4
7630
by: PH.D.Condidater.Li.Ning | last post by:
Hi, all, I am using an uninitialised variable that generating a 'Run-Time Check Failure #3' when the debug version is running. The code is complex and changing it would be risky, so how do I turn off this annoying run time check? in platform : vista + visual studio 2005
1
2622
by: anmcafresher | last post by:
Hi Guys, I am working with an option where I do want to print a background image without enabling the "Print Background Color and Image" in the IE. I do want to get this image printed on each page that i get printed through Printer like a footer.
1
3063
by: bh | last post by:
I am using a built-in login control on a form, and have set the "DisplayRememberMe" property to false. It correctly does not display that checkbox on the login form; however, after authenticating, I'm prompted with an Autocomplete Passwords Dialog box, asking if I want to remember the password. Is there any way to disable this dialog, and force it to not remember any passwords? Thanks in advance.
0
9589
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10340
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10329
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9163
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6858
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5527
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5663
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4304
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3830
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.