protected void Page_Load(object sender, EventArgs e)
 {
     //SetupPreviewPropertyControl(ParticipantsContentArea, Participants);
     if (FormControls != null && FormControls.Count > 0)
     {
         FormFieldsRepeater.DataSource = FormControls.AllKeys.Take(5);
         FormFieldsRepeater.DataBind();
         FormFieldsModalRepeater.DataSource = FormControls.AllKeys;
         FormFieldsModalRepeater.DataBind();
     }
     //SelectCheckBox.Checked = IsChecked();
     //SelectCheckBox.DataBind();
     Copy.DataBind();
 }
예제 #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     FormFieldsRepeater.DataSource = FormControls.AllKeys;
     FormFieldsRepeater.DataBind();
 }