private void showObservationNoteData() { ObservationNote observationNote = new ObservationNote(); observationNote = ObservationNoteManager.GetObservationNoteByID(Int32.Parse(Request.QueryString["observationNoteID"])); txtNote.Text = observationNote.Note; ddlResident.SelectedValue = observationNote.ResidentID.ToString(); txtAddeBy.Text = observationNote.AddeBy.ToString(); txtExtraField1.Text = observationNote.ExtraField1; txtExtraField2.Text = observationNote.ExtraField2; txtExtraField3.Text = observationNote.ExtraField3; txtExtraField4.Text = observationNote.ExtraField4; txtExtraField5.Text = observationNote.ExtraField5; }
protected void btnUpdate_Click(object sender, EventArgs e) { ObservationNote observationNote = new ObservationNote(); observationNote = ObservationNoteManager.GetObservationNoteByID(Int32.Parse(Request.QueryString["observationNoteID"])); ObservationNote tempObservationNote = new ObservationNote(); tempObservationNote.ObservationNoteID = observationNote.ObservationNoteID; tempObservationNote.Note = txtNote.Text; tempObservationNote.ResidentID = Int32.Parse(ddlResident.SelectedValue); tempObservationNote.AddeBy = Int32.Parse(txtAddeBy.Text); tempObservationNote.AddedDate = DateTime.Now; tempObservationNote.ExtraField1 = txtExtraField1.Text; tempObservationNote.ExtraField2 = txtExtraField2.Text; tempObservationNote.ExtraField3 = txtExtraField3.Text; tempObservationNote.ExtraField4 = txtExtraField4.Text; tempObservationNote.ExtraField5 = txtExtraField5.Text; bool result = ObservationNoteManager.UpdateObservationNote(tempObservationNote); Response.Redirect("AdminObservationNoteDisplay.aspx"); }