using System;
using CMS.GlobalHelper;
using CMS.UIControls;
public partial class CMSInstall_Controls_WizardSteps_SiteProgress : CMSUserControl
{
///
/// Text displayed in progress panel.
///
public string ProgressText
{
get
{
return ltlProgress.Text;
}
set
{
ltlProgress.Text = "" + value + "";
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!RequestHelper.IsPostBack())
{
ltlProgress.Text = "";
}
}
}