예제 #1
0
    protected void btn_Update_Click(object sender, EventArgs e)
    {
        try
        {
            if (Validate())
            {
                UPDATE = "U";
                int       ActiveSt = Convert.ToInt16(rbnSy.SelectedValue);
                DataTable dt       = new DataTable();

                dt = objDist.UpdateSuplyBAL(ddl_State.SelectedValue.ToString(), ddl_dist_code.SelectedValue.ToString(), Session[lblSupCode].ToString(), txtSname.Text.Trim(), txtSaddress.Text.Trim(), txtemail.Text.Trim(), txtMbno.Text.Trim(), ActiveSt, Session["UsrName"].ToString(), UPDATE, ConnKey);
                if (dt.Rows.Count > 0)
                {
                    objCommon.ShowAlertMessage(dt.Rows[0][0].ToString());
                    txtSname.Text    = "";
                    txtSaddress.Text = "";
                    txtemail.Text    = "";
                    txtMbno.Text     = "";
                    Viewdata();
                }
                Viewdata();
                btn_Save.Visible   = true;
                btn_Update.Visible = false;
            }
        }
        catch (Exception ex)
        {
            ExceptionLogging.SendExcepToDB(ex, Session["UsrName"].ToString(), Request.ServerVariables["REMOTE_ADDR"].ToString());
            Response.Redirect("~/Error.aspx");
        }
        finally
        {
        }
    }