Jag får bara det här felmeddelandet efter jag har laddat upp sidan till servern. Du har även RemoteOnly vilket säger att du endast får se felmeddelandet om du surfar på sidan på samma server som programmet ligger. Kör samma sida på din server så kommer du se ett detaljerat felmeddelande. Kan inte vara möjligt. Har du tillgång till servern via Terminal Server eller sitta direkt på den? Om du surfar där skall du få ett annat mer detaljerat fel. Jo det är möjligt - för så blir det om man har något fel på sin ASP.NET installation på webservern. Detta kan vara allt ifrån rättigheter till en korrupt installation. Är det ett webhotell? Kolla din web.config fil noga. Jag har råkat ut för liknande och då hade jag råkat kasta in ett tecken i filen så att den inte ville vara med och då spelar det ingen roll om du skriver On eller Off osv. Fick samma felmeddelande när de på webbhotellet måste aktivera varje aspx-applikation för sig.Hur ställer jag in Web.Config?
--------------------------------------------------------------------------------->
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>
<-------------------------------------------------------------
Jag har ändrat i web.config <customErrors="Off" />. Det är det enda jag har ändrat i web.config. Jag har skapat projektet med VS och bara lagt till en CSS-fil. Sen har jag lagt in några DIV-taggar på sidan. Jag har även kompilerat hela sidan innan jag laddade upp den. Vad är det för fel?Sv: Hur ställer jag in Web.Config?
Sv: Hur ställer jag in Web.Config?
Sv: Hur ställer jag in Web.Config?
Sv: Hur ställer jag in Web.Config?
/JanneSv: Hur ställer jag in Web.Config?
/Ann