예제 #1
0
 protected void btn_Save_Click(object sender, EventArgs e)
 {
     try
     {
         if (Validatedisease())
         {
             INSERT = "I";
             DataTable dt = new DataTable();
             dt = objDist.InsertDiseaseTypeBAL(txtDiseaseTCode.Text, txtDiseaseName.Text.Trim(), Session["UsrName"].ToString(), INSERT, ConnKey);
             if (dt.Rows.Count > 0)
             {
                 objCommon.ShowAlertMessage(dt.Rows[0][0].ToString());
                 txtDiseaseTCode.Text = "";
                 txtDiseaseName.Text  = "";
             }
             Viewdata();
         }
     }
     catch (Exception ex)
     {
         ExceptionLogging.SendExcepToDB(ex, Session["UsrName"].ToString(), Request.ServerVariables["REMOTE_ADDR"].ToString());
         Response.Redirect("~/Error.aspx");
     }
 }