File Permissions? Aghhhrr

  • Thread starter Thread starter Sosh
  • Start date Start date
S

Sosh

Hi,

Could anyone give me a clue as to what is going on with my ASP.NET app?
Recenlty when I try and run the application, I get propted for logon
credentials when trying to access a page in a particular directory. I have
no idea why I am being prompted for these. I have checked that the website
has anonymous access enabled (it is using the IUSR_ account). I'm my
frustration I have also allowed full access to all the files and directories
within the website for the IUSR_ account, and ASPNET account. I have tried
entering every username I can think of in the login prompt (including
administration accounts) but am still getting

401.2.: You do not have permission to view this directory or page using the
credentials you supplied

Could anyone tell me what might be going on??

Thanks!
 
The error you are getting is client-side, that is, the server will not
send a file that is requested by your browser. Contrast that with
server-side, where you will get an ASP.NET error page and a 500 error
code.

The exact file causing the problem can be found in the IIS logs at c:
\windows\system32\logfiles\w3svcxxx (unless moved from default).

For permissions, you will not need to modify permissions fro ASPNET (or
NETWORK_SERVICES). You will need to review permissions for IUSR_ or your
NTLM account if you are using Integrated Authentication.

----
700cb Development, Inc.
http://www.700cb.net
..NET utilities, developer tools,
and enterprise solutions

Hi,

Could anyone give me a clue as to what is going on with my ASP.NET
app? Recenlty when I try and run the application, I get propted for
logon credentials when trying to access a page in a particular
directory. I have no idea why I am being prompted for these. I have
checked that the website has anonymous access enabled (it is using the
IUSR_ account). I'm my frustration I have also allowed full access to
all the files and directories within the website for the IUSR_
account, and ASPNET account. I have tried entering every username I
can think of in the login prompt (including administration accounts)
but am still getting

401.2.: You do not have permission to view this directory or page
using the credentials you supplied

Could anyone tell me what might be going on??

Thanks!



--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top