I will access the application via browser with "Prompt for username and password" option checked in IE8 settings (IE8 -> tools -> internet options -> security tab (local intranet) -> custom level -> user authentication section)
It prompt the credential details, I have entered the user ID & PWD and press ok. It allows me to access the application. Good.
But, now I have changed the browser settings as "Automatic logon with current username and password". Then access the same link but , this time
it never ask me or get my own system credentials instead, it took my previously entered credentials.
If I will clear my browser history now, then it will take my own credentials but, I need any code/settings to do this.
2.Click
Safety, and then click Delete Browsing History.
3.In
Delete Browsing History area, click Delete Files, cookies, history and form one at a time(do not delete password as that will delete all saved passwords).
A progress bar is displayed to indicate that the browsing history is being cleared. After this process is complete, test Internet Explorer to verify that it works correctly.
Once you have cleared cache try logging on to the site and check ‘Remember Password’ check box and see if it remembers your password for the next time.
For more information please follow the below given link:
Please suggest me how to retrieve always windows credential’s without deleting the browser history. As it is not possible to ask all the client user to delete the browser history.
3.In
Delete Browsing History area, click Delete Files, cookies, history and form one at a time(do not delete password as that will delete all saved passwords).
You can only delete cookies and password, that will make sense.
As it is not possible to ask all the client user to delete the browser history. Please provide alternative solution( may be settings change in IIS server or...)
But, now I have changed the browser settings as "Automatic logon with current username and password". Then access the same link but , this time
it never ask me or get my own system credentials instead, it took my previously entered credentials.
Yes. Hence the setting name "Automatic logon with current username and password". Note that I've bloded the word
current. If the user wishes to change his/her browser to that, there is nothing we specifically can do to change that behaviour other than saying him/her to clear the browser cache. It's user's choice and user's browser. What you can do is display
some kind of prompt/message in your website warning the user. That's all you can do.
Actually IIS is the web server and it has nothing to do with the user's browser settings like these. You can't control things like that with IIS.
srameshdurai
Member
179 Points
53 Posts
IE8 settings and authentication
Jul 03, 2012 12:36 PM|LINK
Hi All,
client machine: windows7,Browser : IE8
IIS server: 5.1
Framework: 4.0
my application allow only AD user access.
I will access the application via browser with "Prompt for username and password" option checked in IE8 settings (IE8 -> tools -> internet options -> security tab (local intranet) -> custom level -> user authentication section)
It prompt the credential details, I have entered the user ID & PWD and press ok. It allows me to access the application. Good.
But, now I have changed the browser settings as "Automatic logon with current username and password". Then access the same link but , this time it never ask me or get my own system credentials instead, it took my previously entered credentials.
If I will clear my browser history now, then it will take my own credentials but, I need any code/settings to do this.
Please help me to fix the above issue.
Ramesh durai S
MCP
Mark as Answer if it's Good.
Mudasir.Khan
All-Star
15346 Points
3142 Posts
Re: IE8 settings and authentication
Jul 03, 2012 12:45 PM|LINK
these are clients browser setting we cannot handle it with server side code
srameshdurai
Member
179 Points
53 Posts
Re: IE8 settings and authentication
Jul 03, 2012 02:48 PM|LINK
Hi Mudasir.Khan
Thanks for your reply.
Is there any other settings in IE8 to control this?
Ramesh durai S
MCP
Mark as Answer if it's Good.
Dino He - MS...
Star
8068 Points
1023 Posts
Microsoft
Re: IE8 settings and authentication
Jul 05, 2012 06:29 AM|LINK
Hi
Internet Explorer 8
1. Open Internet Explorer 8.
2. Click Safety, and then click Delete Browsing History.
3. In Delete Browsing History area, click Delete Files, cookies, history and form one at a time(do not delete password as that will delete all saved passwords).
A progress bar is displayed to indicate that the browsing history is being cleared. After this process is complete, test Internet Explorer to verify that it works correctly.
Once you have cleared cache try logging on to the site and check ‘Remember Password’ check box and see if it remembers your password for the next time.
For more information please follow the below given link:
How to optimize Internet Explorer
http://support.microsoft.com/kb/936213
If you have any feedback about my replies, please contact msdnmg@microsoft.com
Microsoft One Code Framework
srameshdurai
Member
179 Points
53 Posts
Re: IE8 settings and authentication
Jul 06, 2012 06:57 AM|LINK
Hi Dino He - MSFT,
Thanks for your reply.
Please suggest me how to retrieve always windows credential’s without deleting the browser history. As it is not possible to ask all the client user to delete the browser history.
Ramesh durai S
MCP
Mark as Answer if it's Good.
Dino He - MS...
Star
8068 Points
1023 Posts
Microsoft
Re: IE8 settings and authentication
Jul 06, 2012 08:52 AM|LINK
Hi
You can only delete cookies and password, that will make sense.
Dino
If you have any feedback about my replies, please contact msdnmg@microsoft.com
Microsoft One Code Framework
srameshdurai
Member
179 Points
53 Posts
Re: IE8 settings and authentication
Jul 06, 2012 11:37 AM|LINK
Hi Dino He - MSFT
Thanks for your post.
As it is not possible to ask all the client user to delete the browser history. Please provide alternative solution( may be settings change in IIS server or...)
Ramesh durai S
MCP
Mark as Answer if it's Good.
Ruchira
All-Star
42941 Points
7024 Posts
MVP
Re: IE8 settings and authentication
Jul 07, 2012 02:42 PM|LINK
Hello,
Yes. Hence the setting name "Automatic logon with current username and password". Note that I've bloded the word current. If the user wishes to change his/her browser to that, there is nothing we specifically can do to change that behaviour other than saying him/her to clear the browser cache. It's user's choice and user's browser. What you can do is display some kind of prompt/message in your website warning the user. That's all you can do.
Actually IIS is the web server and it has nothing to do with the user's browser settings like these. You can't control things like that with IIS.
My Tech blog | My YouTube ChannelPlease 'Mark as Answer' if this post helps you.Dino He - MS...
Star
8068 Points
1023 Posts
Microsoft
Re: IE8 settings and authentication
Jul 09, 2012 02:56 AM|LINK
Hi
You can try this:
<INPUT TYPE="password" AUTOCOMPLETE="off">
<asp:TextBox ID="TextBox1" autocomplete="off" runat="server" TextMode="Password">
http://msdn.microsoft.com/en-us/library/ms533486(VS.85).aspx
http://www.proficientit.com.au/blog/?p=184
If you have any feedback about my replies, please contact msdnmg@microsoft.com
Microsoft One Code Framework