How to see errors in an asp.net website?

Posted by Jayam Ravi on Stack Overflow See other posts from Stack Overflow or by Jayam Ravi
Published on 2010-04-16T17:57:12Z Indexed on 2010/04/16 18:03 UTC
Read the original article Hit count: 241

Filed under:
|

I just want to see error insteas of asp.net showing me default error Server Error in '/' Application. What should i change in web config?

I used this,

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>

Any suggestion i want to see errors in browser as i do live testing...

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about error-handling