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