Skip to content

Instantly share code, notes, and snippets.

public partial class Elmah : DbMigration
{
public override void Up()
{
Sql(CreateTable_ELMAH_Error);
Sql(CreatreProcedure_ELMAH_GetErrorXml);
Sql(CreateProcedure_ELMAH_GetErrorsXml);
Sql(CreateProcedure_ELMAH_LogError);
}
@kevinblake
kevinblake / RemovePreviewButton.cs
Created October 30, 2012 15:04 — forked from nul800sebastiaan/RemovePreviewButton.cs
Remove preview button in Umbraco
public class RemovePreviewButton : ApplicationBase
{
public RemovePreviewButton()
{
umbracoPage.Load += this.umbracoPage_Load;
}
private void umbracoPage_Load(object sender, EventArgs e)
{
var umbracoPage = (umbracoPage)sender;