wet-boew / web-reporting

1 stars 2 forks source link

Redirect problem in the global.asax #57

Open LaurentGoderre opened 11 years ago

LaurentGoderre commented 11 years ago

One of the redirect in the Global.asax is redirecting to an incorrect URL causing a HTTP 403

At line 30, this

Response.Redirect("GenericErrorPage.htm", true);

Should be

Response.Redirect("~/GenericErrorPage.htm", true);