using System; using System.Data; using System.Collections; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using CMS.ExtendedControls; using CMS.GlobalHelper; public partial class CMSModules_BizForms_InlineControls_BizFormControl : InlineUserControl { /// /// Form name. /// public string FormName { get { return ValidationHelper.GetString(GetValue("FormName"), null); } set { SetValue("FormName", value); Bizform1.FormName = value; } } /// /// Control parameter. /// public override string Parameter { get { return FormName; } set { FormName = value; } } protected void Page_Load(object sender, EventArgs e) { SetupControl(); } /// /// Initializes the control properties. /// protected void SetupControl() { Bizform1.FormName = FormName; Bizform1.IsLiveSite = IsLiveSite; } }