![]() |
how to create the username/password authorization dialog?
Anyone knows how to create the username/password authorization dialog in
ASP? Thanks, John |
Re: how to create the username/password authorization dialog?
Do you mean to go to "Directory Security" Tab, and click "Edit" button in
Anonymous access and authentication control? And then check "Basic authentication." ?? How about the ASP source code? How to invoke the username/password dialog? Thanks, John "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message news:O6PLT08YDHA.2384@tk2msftngp13.phx.gbl... > Easiest way is to turn on Windows Authentication in IIS > > > -- > ---------------------------------------------------------- > Curt Christianson (Software_AT_Darkfalz.Com) > Owner/Lead Designer, DF-Software > http://www.Darkfalz.com > --------------------------------------------------------- > ..Offering free scripts & code snippits for everyone... > --------------------------------------------------------- > > > "John Davis" <jrefactor@hotmail.com> wrote in message > news:uIQVKa8YDHA.2284@TK2MSFTNGP10.phx.gbl... > > Anyone knows how to create the username/password authorization dialog in > > ASP? > > > > Thanks, > > John > > > > > > |
Re: how to create the username/password authorization dialog?
yes..... Turn off Anonymous.
The popup login box is built-in and automatic -- ---------------------------------------------------------- Curt Christianson (Software_AT_Darkfalz.Com) Owner/Lead Designer, DF-Software http://www.Darkfalz.com --------------------------------------------------------- ...Offering free scripts & code snippits for everyone... --------------------------------------------------------- "John Davis" <jrefactor@hotmail.com> wrote in message news:OWeb6SDZDHA.2520@TK2MSFTNGP09.phx.gbl... > Do you mean to go to "Directory Security" Tab, and click "Edit" button in > Anonymous access and authentication control? And then check "Basic > authentication." ?? How about the ASP source code? How to invoke the > username/password dialog? > > Thanks, > John > > "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message > news:O6PLT08YDHA.2384@tk2msftngp13.phx.gbl... > > Easiest way is to turn on Windows Authentication in IIS > > > > > > -- > > ---------------------------------------------------------- > > Curt Christianson (Software_AT_Darkfalz.Com) > > Owner/Lead Designer, DF-Software > > http://www.Darkfalz.com > > --------------------------------------------------------- > > ..Offering free scripts & code snippits for everyone... > > --------------------------------------------------------- > > > > > > "John Davis" <jrefactor@hotmail.com> wrote in message > > news:uIQVKa8YDHA.2284@TK2MSFTNGP10.phx.gbl... > > > Anyone knows how to create the username/password authorization dialog in > > > ASP? > > > > > > Thanks, > > > John > > > > > > > > > > > > |
Re: how to create the username/password authorization dialog?
Thanks, but how to set the username and password. I did that in Anonymous
User Account, but it seems not working. Also, what is the checkbox "Allow IIS to control password" means?? Please advice, thanks! john "William Tasso" <ngx@tbdata.com> wrote in message news:#sL8quDZDHA.1744@TK2MSFTNGP12.phx.gbl... > John Davis wrote: > > "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message > > news:O6PLT08YDHA.2384@tk2msftngp13.phx.gbl... > >> "John Davis" <jrefactor@hotmail.com> wrote in message > >> news:uIQVKa8YDHA.2284@TK2MSFTNGP10.phx.gbl... > >>> Anyone knows how to create the username/password authorization > >>> dialog in ASP? > >> Easiest way is to turn on Windows Authentication in IIS > >> > > Do you mean to go to "Directory Security" Tab, and click "Edit" > > button in Anonymous access and authentication control? And then check > > "Basic authentication." ?? > > That would do it. > > > How about the ASP source code? How to > > invoke the username/password dialog? > > Using Windows or Basic authentication there is no need for asp to do > anything. IIS takes care of ensuring authentication. Useful if your > visitors are mapped to user names on the server. > > -- > William Tasso - http://WilliamTasso.com > > |
Re: how to create the username/password authorization dialog?
"William Tasso" <ngx@tbdata.com> wrote in message news:%23sL8quDZDHA.1744@TK2MSFTNGP12.phx.gbl... > John Davis wrote: > > "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message > > news:O6PLT08YDHA.2384@tk2msftngp13.phx.gbl... > >> "John Davis" <jrefactor@hotmail.com> wrote in message > >> news:uIQVKa8YDHA.2284@TK2MSFTNGP10.phx.gbl... > >>> Anyone knows how to create the username/password authorization > >>> dialog in ASP? > >> Easiest way is to turn on Windows Authentication in IIS > >> > > Do you mean to go to "Directory Security" Tab, and click "Edit" > > button in Anonymous access and authentication control? And then check > > "Basic authentication." ?? > > That would do it. > > > How about the ASP source code? How to > > invoke the username/password dialog? > > Using Windows or Basic authentication there is no need for asp to do > anything. IIS takes care of ensuring authentication. Useful if your > visitors are mapped to user names on the server. But I find that this doesn't work with many browsers. Opera 7 just reports an unknow authentication error (or something similar). IE on my old Mac would prompt for user information, but it could not authenticate any user I entered. It all works fine on my XP machine with IE6 of course. |
Re: how to create the username/password authorization dialog?
"John Davis" <jrefactor@hotmail.com> wrote in message news:%23nXhzcHZDHA.1620@TK2MSFTNGP12.phx.gbl... > Thanks, but how to set the username and password. I did that in Anonymous > User Account, but it seems not working. Also, what is the checkbox "Allow > IIS to control password" means?? > On your desktop, go to "My Computer", right-click and select "Manage", then "Local users and groups", then "Users", right-click, add new user. |
create the username/password authentication dialog problem
I want to add security in ASP application.
When the user go to http://localhost/myproject/index.asp, I want it will pop up an username/password authentication dialog box. Here's the steps I did, but still not working. 1. In computer management, add an user "admin" that should have permission to the page 2. In IIS console, right click the file index.asp, and click properties > File Security > Edit, and click Edit button under Anonymous access, and add user "admin" in Anonymous User Account window. 3. Uncheck Anonymous access check box 4. Click OK button Then it should provide security access to index.asp only, but not other files. But still not working either way. Please advise! Thanks, Matt |
Re: create the username/password authentication dialog problem
You need to:
a) uncheck the "Allow Anonymous Access" box b) check the "Basic" and/or "integrated Windows Authentication" box c) change the NTFS permissions to give your user account access d) If you are using Internet Explorer -and- Integrated Windows Authentication, then http://localhost is in the Intranet zone, and IE will automatically logon for you (so you wont' see the logon dialogue box). Instead, try http://127.0.0.1 which IE will think is in the Internet zone Cheers Ken "Matt" <mattloude@hotmail.com> wrote in message news:%23ojEe9ZAEHA.688@tk2msftngp13.phx.gbl... : I want to add security in ASP application. : When the user go to http://localhost/myproject/index.asp, I want it will pop : up an username/password authentication dialog box. : : Here's the steps I did, but still not working. : 1. In computer management, add an user "admin" that should have permission : to the page : 2. In IIS console, right click the file index.asp, and click properties > : File Security > Edit, and click Edit button under Anonymous access, and add : user "admin" in Anonymous User Account window. : 3. Uncheck Anonymous access check box : 4. Click OK button : : Then it should provide security access to index.asp only, but not other : files. But still not working either way. Please advise! : : : Thanks, : Matt : : : : : : |
Re: create the username/password authentication dialog problem
Thanks Ken,
it pops up the logon dialog box when I try 127.0.0.1, but how about the domain? How to set the domain? Even I don't type anything in domain, it is still able to go to the page? Also, what do you mean "c) change the NTFS permissions to give your user account access." I just added the user in Anonymous User Account window in IIS console. Please advise. Thanks! "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message news:#JnBdYaAEHA.2600@TK2MSFTNGP09.phx.gbl... > You need to: > > a) uncheck the "Allow Anonymous Access" box > b) check the "Basic" and/or "integrated Windows Authentication" box > c) change the NTFS permissions to give your user account access > d) If you are using Internet Explorer -and- Integrated Windows > Authentication, then http://localhost is in the Intranet zone, and IE will > automatically logon for you (so you wont' see the logon dialogue box). > Instead, try http://127.0.0.1 which IE will think is in the Internet zone > > Cheers > Ken > > > "Matt" <mattloude@hotmail.com> wrote in message > news:%23ojEe9ZAEHA.688@tk2msftngp13.phx.gbl... > : I want to add security in ASP application. > : When the user go to http://localhost/myproject/index.asp, I want it will > pop > : up an username/password authentication dialog box. > : > : Here's the steps I did, but still not working. > : 1. In computer management, add an user "admin" that should have permission > : to the page > : 2. In IIS console, right click the file index.asp, and click properties > > : File Security > Edit, and click Edit button under Anonymous access, and > add > : user "admin" in Anonymous User Account window. > : 3. Uncheck Anonymous access check box > : 4. Click OK button > : > : Then it should provide security access to index.asp only, but not other > : files. But still not working either way. Please advise! > : > : > : Thanks, > : Matt > : > : > : > : > : > : > > |
Re: create the username/password authentication dialog problem
"Matt" wrote: Thanks Ken,
: it pops up the logon dialog box when I try 127.0.0.1, but how about the : domain? How to set the domain? Even I don't type anything in domain, it is : still able to go to the page? Also, what do you mean "c) change the NTFS : permissions to give your user account access." I just added the user in : Anonymous User Account window in IIS console. Matt... Disabling the anonymous user setting in IIS requires you to use either Basic or integrated Windows Authentication. In the NTFS permissions settings at the file system level, on the Security tab, add the domain user you want to have rights to login with. If domain\user1 has rights, and domain\user2 tries to logon, they will be denied. If you want more than one user, it is recommended to either use an existing group or create a new one. Add the group to the NTFS permissions so if users have to be added, deleted in the future, just add/remove them from the group in your domain group. You will not have to revisit the NTFS permissions or the IIS settings. Setting the user as the anonymous user in IIS defeats the purpose of disabling anonymous user access. HTH... -- Roland Hall /* This information is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. */ Technet Script Center - http://www.microsoft.com/technet/scriptcenter/ WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp MSDN Library - http://msdn.microsoft.com/library/default.asp |
| All times are GMT. The time now is 07:59 PM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.