couple of style tweaks for the installer

[TFS Changeset #76919]
This commit is contained in:
PerPloug
2010-09-07 14:15:35 +00:00
parent 541bb38285
commit 88d06f54d3
11 changed files with 92 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace umbraco.presentation.install.steps.Definitions
{
public class InstallerControl : System.Web.UI.UserControl
{
public void NextStep()
{
_default p = (_default)this.Page;
p.GotoNextStep(helper.Request("installStep"));
}
}
}