Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Web.UI;
- namespace SitefinityWebApp
- {
- public class NotFoundStatusCodeSetter : System.Web.UI.UserControl
- {
- protected override void Render(HtmlTextWriter writer)
- {
- if (!this.IsDesignMode())
- {
- base.Render(writer);
- Response.Status = "404 Not Found";
- Response.StatusCode = 404;
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment