protected void AddSectionField(object sender, EventArgs e)
 {
     if (TxtSection != null &&
         TxtSection.Text != null)
     {
         TooListBox.ClearSelection();
         TooListBox.Items.Add("- Section:" + TxtSection.Text + " -");
         TxtSection.Text = String.Empty;
     }
 }
        //try
        //{
        //    if (TooListBox != null)
        //    {
        //        //string toLBValue = Convert.ToString(
        //            //this.GetWebPropertyValue(TooListBox.ID));
        //        if (!string.IsNullOrEmpty(toLBValue))
        //        {
        //            string[] toLBItemValues = null;
        //            try
        //            {
        //                toLBItemValues = toLBValue.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
        //            }
        //            catch (Exception ex)
        //            {
        //            }
        //            if (toLBItemValues != null && toLBItemValues.Length > 0)
        //            {
        //                foreach (string itemValue in toLBItemValues)
        //                {
        //                    try
        //                    {
        //                        TooListBox.ClearSelection();
        //                        TooListBox.Items.Add(itemValue);
        //                        AllFieldsListBox.Items.Remove(itemValue);
        //                    }
        //                    catch (Exception ex)
        //                    {
        //                    }
        //                }
        //            }
        //        }
        //    }
        //}

        //catch (System.Exception e)
        //{
        //}

        //protected string GetWebPropertyValue(string key)
        //{
        //    String webPropertyValue = String.Empty;
        //    String webPropertyKey = Context.Request["List"].Replace(
        //        "{", "").Replace("}", "").Replace("-", "") + "_" + key;
        //    try
        //    {
        //        SPWeb web = SPContext.Current.Web;
        //        SPSecurity.RunWithElevatedPrivileges(delegate()
        //        {
        //            if (web != null && web.Properties.ContainsKey(webPropertyKey))
        //            {
        //                webPropertyValue = web.Properties[webPropertyKey];
        //            }
        //        });
        //    }
        //    catch (System.Exception e)
        //    {
        //        if (this.ErrorLabel != null)
        //        {
        //            if (!String.IsNullOrEmpty(this.ErrorLabel.Text))
        //            {
        //                this.ErrorLabel.Text += "<br>";
        //            }
        //            this.ErrorLabel.Text += key + " value not found. Message: " + e.Message;
        //        }
        //    }
        //    finally { }
        //    return webPropertyValue;
        //}
        protected void AddFieldToListBox(object sender, EventArgs e)
        {
            if (AllFieldsListBox != null && AllFieldsListBox.SelectedItem != null)
            {
                if (AllFieldsListBox.SelectedItem.Text.Equals(this.blankrow))
                {
                    TooListBox.Items.Add(this.blankrow);
                }
                else
                {
                    if (!TooListBox.Items.Contains(AllFieldsListBox.SelectedItem))
                    {
                        TooListBox.ClearSelection();
                        TooListBox.Items.Add(AllFieldsListBox.SelectedItem);
                        AllFieldsListBox.Items.Remove(AllFieldsListBox.SelectedItem);
                    }
                }
            }
        }