Application_OnError in IIS 6 Problem!

  • Thread starter Thread starter Steve Taylor
  • Start date Start date
S

Steve Taylor

This is probably a simple one....

Running asp.net on win 2003/IIS 6. When I run my app using "InProc" Session
state, error handling works fine. But when I switch to "ServerState" I get
unfriendly message window. Help???

-S
 
Hmm, I guess the next question would be to get the exact error
message. If you are not getting detailed error messages, make sure to
turn custom errors off in web.config, i.e.:

<system.web>
<customErrors mode="Off">
</customErrors>
</system.web>
 
Back
Top