Du skal huske at i din web.config
at sætte
<customErrors mode="Off"/>
Ln
Min ser nogenlunde sådan ud<configuration xmlns="
http://schemas.microsoft.com/.NetConfiguration/v2.0"> <appSettings/>
<system.web>
<compilation debug="false"/>
<authentication mode="Windows"/>
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
<customErrors mode="Off"/>
</system.web>
</configuration>