Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sitefinitySDK/606d7c1a40d48df4c1402b944b4adb19 to your computer and use it in GitHub Desktop.
Save sitefinitySDK/606d7c1a40d48df4c1402b944b4adb19 to your computer and use it in GitHub Desktop.
SF_10.1, SF_10.2, SF_11.0, SF_11.1, SF_11.2, SF_12.0, SF_12.1, SF_12.2, SF_13.0, SF_13.1, SF_13.2, SF_13.3 - https://docs.sitefinity.com/mvc-change-the-response-status-of-the-custom-error-page
using System;
using Telerik.Sitefinity.Abstractions;
namespace SitefinityWebApp
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
Bootstrapper.Bootstrapped += Bootstrapper_Bootstrapped;
}
protected void Bootstrapper_Bootstrapped(object sender, EventArgs e)
{
FeatherActionInvokerCustom.Register();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment