private void showSectionTextValueData()
    {
        SectionTextValue sectionTextValue = new SectionTextValue();

        sectionTextValue = SectionTextValueManager.GetSectionTextValueByID(Int32.Parse(Request.QueryString["sectionTextValueID"]));

        ddlCarePlanDateTime.SelectedValue = sectionTextValue.CarePlanDateTimeID.ToString();
        txtSection_2.Text   = sectionTextValue.Section_2;
        txtSection_3.Text   = sectionTextValue.Section_3;
        txtSection_6.Text   = sectionTextValue.Section_6;
        txtSection_7.Text   = sectionTextValue.Section_7;
        txtAddedBy.Text     = sectionTextValue.AddedBy.ToString();
        txtUpdatedBy.Text   = sectionTextValue.UpdatedBy.ToString();
        txtUpdatedDate.Text = sectionTextValue.UpdatedDate;
    }
    protected void btnUpdate_Click(object sender, EventArgs e)
    {
        SectionTextValue sectionTextValue = new SectionTextValue();

        sectionTextValue = SectionTextValueManager.GetSectionTextValueByID(Int32.Parse(Request.QueryString["sectionTextValueID"]));
        SectionTextValue tempSectionTextValue = new SectionTextValue();

        tempSectionTextValue.SectionTextValueID = sectionTextValue.SectionTextValueID;

        tempSectionTextValue.CarePlanDateTimeID = Int32.Parse(ddlCarePlanDateTime.SelectedValue);
        tempSectionTextValue.Section_2          = txtSection_2.Text;
        tempSectionTextValue.Section_3          = txtSection_3.Text;
        tempSectionTextValue.Section_6          = txtSection_6.Text;
        tempSectionTextValue.Section_7          = txtSection_7.Text;
        tempSectionTextValue.AddedBy            = Int32.Parse(txtAddedBy.Text);
        tempSectionTextValue.AddedDate          = DateTime.Now;
        tempSectionTextValue.UpdatedBy          = Int32.Parse(txtUpdatedBy.Text);
        tempSectionTextValue.UpdatedDate        = txtUpdatedDate.Text;
        bool result = SectionTextValueManager.UpdateSectionTextValue(tempSectionTextValue);

        Response.Redirect("AdminSectionTextValueDisplay.aspx");
    }