Problem with Custom Errors
-
Hello all, I am using customErrors of Web.config file in my application so that to redirect the user to an error page on exception. But after getting exception i am not redirecting to the erropage. Am i missing something? I am using this code in my web.config:
<customErrors mode="On" defaultRedirect="ErrorPage.aspx">
</customErrors>
-
Hello all, I am using customErrors of Web.config file in my application so that to redirect the user to an error page on exception. But after getting exception i am not redirecting to the erropage. Am i missing something? I am using this code in my web.config:
<customErrors mode="On" defaultRedirect="ErrorPage.aspx">
</customErrors>
Go through below URL- http://aspnetresources.com/articles/CustomErrorPages.aspx[^]
Parwej Ahamad ahamad.parwej@gmail.com
-
Go through below URL- http://aspnetresources.com/articles/CustomErrorPages.aspx[^]
Parwej Ahamad ahamad.parwej@gmail.com
I tried couple of things mentioned in the article but i m still not achieving the result.