protected void btn_Save_Click(object sender, EventArgs e)
 {
     try
     {
         if (ValidateInsType())
         {
             int ActiveSt = Convert.ToInt16(rbnSy.SelectedValue);
             INSERT = "I";
             DataTable dt = new DataTable();
             dt = objDist.InsertInstituionBAL(txtInstutionCode.Text, txtInstutionName.Text.Trim(), ActiveSt, Session["UsrName"].ToString(), INSERT, ConnKey);
             if (dt.Rows.Count > 0)
             {
                 objCommon.ShowAlertMessage(dt.Rows[0][0].ToString());
                 txtInstutionCode.Text = "";
                 txtInstutionName.Text = "";
             }
             Viewdata();
         }
     }
     catch (Exception ex)
     {
         ExceptionLogging.SendExcepToDB(ex, Session["UsrName"].ToString(), Request.ServerVariables["REMOTE_ADDR"].ToString());
         Response.Redirect("~/Error.aspx");
     }
     finally
     {
     }
 }