Hi,
I am starting with this ASP.NET book by Varallo, and I have completed the fourth chapter. At this point the book encourages us to look at a few pages in the browser like the Administration/Administration.aspx ( i.e.
http://localhost/PaidTimeOffUI/Admin...istration.aspx)
I attempted looking at these pages, (in IE and FireFox) and I get a dialog box âConnect to
<My Computer Name>â asking me to enter the User name and Password.
I am new to ASP.NET and Microsoft related technologies, though I have experience on OO Design. I am wondering if someone more experienced than myself would provide me the steps on configuring this application to work from within VS 2008.
I am using VS 2008, SQL Server 2005 and IIS 5.1 on Win XP
As mentioned at the end of Chap. 1 â I created a virtual directory PaidTimeOffUI. From posts in this forum, I understand that I needed to use Windows Integrated Authentication.
So I Right Clicked on âDefault Websiteâ in the IIS, went to âPropertiesâ, and went to the âDirectory Securityâ Tab. Here under âAnonymous Access and Authentication Controlâ I clicked the âEditâ Button. In this dialog I unchecked âAnonymous Accessâ and checked âIntegrated Windows Authenticationâ. I repeated these steps for the PaidTimeOffUI site which is a child of the âDefault Websiteâ.
In Chap 2, we are required to put in the first record into ENTUserAccount Table. While putting this record, I changed the WindowsAccountName to my own i.e.
<My Computer>\
<My User Name> (My User name has Admin rights on this machine.) instead of VARALLO1\VinceVarallo
After these settings if I got to
http://localhost/PaidTimeOffUI/Admin...istration.aspx - I get the dialog box âConnect to <My Computer Name>â asking me to enter the User name and Password. I tried putting a breakpoint in the Page_Load() of the Administration/Administration.aspx page, and it does not get triggered before I get the dialog, so I think IIS is stopping it.
I would be grateful if someone could provide me the steps on configuring IIS beyond what I have done above. Also please let me know if there is some other place to put to breakpoint to check if it has gotten past IIS.
Thanks a lot,
O.O.