Jag får detta medellande plus: Det skulle kunna bero på att IIS:en inte är riktigt konfigurerad för den .NET-version du kör, kolla med webhotellets support om det är på något hotell du kör. Johan. Jag har löst det, felet var att applicationen var tvungen att ligga i rooten.Server Error in '/' Application.
<code>
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this
application prevent the details of the application error from being viewed remotely (for security reasons).
It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please
create a <customErrors> tag within a "web.config" configuration file located in the root directory of the
current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying
the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom
error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
</code>
Jag har "ingenting" på sidan, bara lite test.
Vad gör jag för fel?Sv: Server Error in '/' Application.
/JohanSv:Server Error in '/' Application.
Tack för svar.
Jag ligger på Loopia, och de har precis installerat net 2,0.
Jag har hur som helst skrivit till dem.
Jag blev också konfundersam om var/hur man lägger upp filerna. De har lagt in en mapp som de kallar
för aspnet_client, där finns en mapp som heter system_webb, och där så finns det två mappar, en som
hetter någonting på 1.1 och där finns det en del filer. Den andra heter någonting på 2.0, och där så
finns det inga filer alls.
Är detta någonting som jag skall ta hänsyn till?Sv: Server Error in '/' Application.