: Hi everyone,
:
[quoted text clipped - 3 lines]
: with anonymous access only. The user that virtual directory is setup to run
: under has administrative privilages on the server.
The virtual directory does not run under a user account. Are you talking
about the account that IIS is configured to impersonate for anonymous
requests?
Additionally, is your ASP.NET application configured to impersonate this
account (via <identity impersonate="true" /> setting)?
Lastly, can you post the relevant IIS logfiles?
Cheers
Ken
: Whenever I visit the deployed site I get prompted for a username and
: password. If I enter my username and password the page I was trying to access
[quoted text clipped - 12 lines]
:
: Adam Ainger
Adam Ainger - 28 Feb 2006 11:10 GMT
Thanks for your feedback Ken.
I'm new to ASP.NET - does the application need to the <identity/> tag when
anonymous access is used?
Since posting my original message, I discovered that the problem was caused
by having ASP.NET validation controls on the page and them requiring a
particular file permission into the ASPNET_CLIENT folder (this is through
Windows and not IIS). Adding the List Folder Contents permission for the
Everyone user fixed the problem.
Regards
Adam
> : Hi everyone,
> :
[quoted text clipped - 39 lines]
> :
> : Adam Ainger
It sounds like you have authorization enabled for your ASP.Net web
application within ASP.Net
When you hit cancel and the site works as expected, that tells me anonymous
authentication is working just fine from IIS. And since you say that IIS
only has anonymous authentication enabled, it tells me that something else
is triggering the user login. Something like ASP.Net URL Authorization.

Signature
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
> Hi everyone,
>
[quoted text clipped - 27 lines]
>
> Adam Ainger
Adam Ainger - 28 Feb 2006 11:10 GMT
Thanks for your feedback David.
Since posting my original message, I discovered that the problem was caused
by having ASP.NET validation controls on the page and them requiring a
particular file permission into the ASPNET_CLIENT folder (this is through
Windows and not IIS). Adding the List Folder Contents permission for the
Everyone user fixed the problem.
Regards
Adam
> It sounds like you have authorization enabled for your ASP.Net web
> application within ASP.Net
[quoted text clipped - 35 lines]
> >
> > Adam Ainger