not authorized to view this page

trafmorek

New member
Joined
Aug 6, 2007
Messages
3
Programming Experience
1-3
Hi everyone. I have a web site that runs on a server 2003 on an intranet. The site is writing in VB .net 2005. I am connecting to the site via a network drive. When I go to the site It brings up the a login window at the top say connecting to"server name" prompting for user name and password. when I click cancel, You are not authorized to view this page. I have tried everything I know, I even deleted the site and recreate it and still nothing. Can someone PLEASE help?

Thanks Trafmore
 
It is an Authorization Permissions issue. It can be fixed from IIS Manager or from within the web.config (authorization + webserver) e.g.
VB.NET:
<system.web>
   <authorization>
      <allow users="*" />
   </authorization>
</system.web>
<system.webServer>
    <handlers accessPolicy="Read, Script" />
</system.webServer>
 
Back
Top