Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP.NET on XP Pro(IIS5)

Status
Not open for further replies.

gregmosu

Programmer
Jul 8, 2002
117
US
I'm trying to set up my asp.net application(vb) on a server running xp pro and iis5. Right now, I cant even get a simple aspx page to execute that I know works on my win. server 2003 pc. Heres the code...

<%@Page Language="VB"%>
<html>
<body>
<% Response.Write(DateTime.Now.ToString()) %>
</body>
</html>

and heres the error message...

Exception Details: System.Web.HttpException: Access denied to 'C:\Program Files\Chilkat Software Inc\ChilkatDotNet\ASP.NET Examples\' directory. Failed to start monitoring directory changes


Stack Trace:

[HttpException (0x80004005): Access denied to 'C:\Program Files\Chilkat Software Inc\ChilkatDotNet\ASP.NET Examples\' directory. Failed to start monitoring directory changes.]
System.Web.FileChangesMonitor.StartMonitoringDirectoryRenamesAndBinDirectory(String dir, FileChangeEventHandler callback) +446
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +324

[HttpException (0x80004005): ASP.NET Initialization Error]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +926
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +128


I tried changing the permisions to the virtual directory where the site lies, but had no success. Any help would be greatly appreciated!

Thanks,
Greg

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top