Advertisement
Guest User

Untitled

a guest
May 26th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <customErrors mode="On">
  2. <error statusCode="404" redirect="~/Error/NotFoundError"/>
  3. </customErrors>
  4.  
  5. public ActionResult NotFoundError()
  6. {
  7. string originalUrl = Request.Url.AbsolutePath;
  8.  
  9. Errormodel model = new Errormodel();
  10. model.URL = originalUrl ;
  11.  
  12. return View(model);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement