Skip to content

Instantly share code, notes, and snippets.

@johnathan-sewell
Created December 15, 2010 07:30
Show Gist options
  • Save johnathan-sewell/741737 to your computer and use it in GitHub Desktop.
Save johnathan-sewell/741737 to your computer and use it in GitHub Desktop.
HttpModule for EPiServer
public class TestModule: IHttpModule
{
public void Init(HttpApplication context)
{
DataFactory.Instance.LoadingPage += LoadingPage;
}
public void LoadingPage(object sender, PageEventArgs e)
{
}
public void Dispose()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment