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
<%@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