Skip to content

Instantly share code, notes, and snippets.

@Swimburger
Last active October 4, 2018 21:01
Show Gist options
  • Save Swimburger/aa31c68736b3a57d31ec20b533fd2bed to your computer and use it in GitHub Desktop.
Save Swimburger/aa31c68736b3a57d31ec20b533fd2bed to your computer and use it in GitHub Desktop.
TriggerError500.ascx DNN
public partial class TriggerError500 : PortalModuleBase
{
protected void Page_Load(object sender, EventArgs e)
{
if(UserId == -1)
{
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment