Guest User

Untitled

a guest
Nov 5th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using System.Web.UI;
  2.  
  3. namespace SitefinityWebApp
  4. {
  5. public class NotFoundStatusCodeSetter : System.Web.UI.UserControl
  6. {
  7. protected override void Render(HtmlTextWriter writer)
  8. {
  9. if (!this.IsDesignMode())
  10. {
  11. base.Render(writer);
  12.  
  13. Response.Status = "404 Not Found";
  14. Response.StatusCode = 404;
  15. }
  16. }
  17. }
  18. }
Add Comment
Please, Sign In to add comment