Frågan#1
Hej sitter och försöker testa lite med ASP.net. Men varje gång jag öppnar filer på mitt Webhotel så får jag följande fel ..
Server Error in '/' Application.
--------------------------------------------------------------------------------
Access denied to 'D:\home\b\blueriders\\www\test.aspx'. Failed to start monitoring file changes.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Access denied to 'D:\home\b\blueriders\\www\test.aspx'. Failed to start monitoring file changes.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[HttpException (0x80004005): Access denied to 'D:\home\b\blueriders\\www\test.aspx'. Failed to start monitoring file changes.]
System.Web.FileChangesMonitor.StartMonitoringFile(String fileName, FileChangeEventHandler callback) +184
System.Web.Caching.CacheDependency.Init(String[] filenames, String[] cachekeys, CacheDependency dependency, DateTime start) +1479
System.Web.Caching.CacheDependency..ctor(String filename, DateTime start) +75
System.Web.Caching.CacheDependency..ctor(String filename) +50
System.Web.Security.FileAuthorizationModule.OnEnter(Object source, EventArgs eventArgs) +413
System.Web.SyncEventExecutionStep.Execute() +60
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.0.3705.288; ASP.NET Version:1.0.3705.288
Detta måste väl vara webhotellet som konfigurerat nåt fel ??
Sidan som jag försöker öppna ser nämligen ut som nedan:
<html>
<head>
<link rel="stylesheet" href="intro.css">
</head>
<body>
<center>
<form action="intro1.aspx" method="post">
<h3> Name: <input id="Name" type=text>
Category: <select id="Category" size=1>
<option>psychology</option>
<option>business</option>
<option>popular_comp</option>
</select>
<input type=submit value="Lookup">
</h3>
</form>
</center>
</body>
</html>
Nån som har en aning och är lite mer expert inom detta område ?