asp.net denies access to site

R

rayday

Guest
Am I forgetting anything?

Thanks in advance
http://www.club070.com/test.aspx

Server Error in '/' Application.
--------------------------------------------------------------------------------

Access is denied.
Description: An error occurred while accessing the resources required to serve this request. You might not have permission to view the requested resources.

Error message 401.3: You do not have permission to view this directory or page using the credentials you supplied (access denied due to ACLs). Ask the Web server's administrator to give you access.
 
I get I different message showing that you need to update your web.config file. Copy and paste the follwing into the file.


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

What are you using to create your aspx pages?

Paul
 
Back
Top