Hello friends I have this code in my web config file.. I am new to asp.net mvc.
<customErrors mode="On" defaultRedirect="~/Shared/Error">
<error statusCode="403" redirect="~/Shared/Error" />
<error statusCode="404" redirect="~/Shared/Error" />
</customErrors>
and I have Error.aspx page under Shared Folder in my application..
now My question is Do i need to do anything with Global.ascx file to route?
if so how to route? waht exactly need to define in my global.ascx file..
Thanks