private void BindGridView2() { cPerson_group oPerson_group = new cPerson_group(); DataSet ds = new DataSet(); string strMessage = string.Empty; string strCriteria = string.Empty; string strActive = string.Empty; strCriteria = strCriteria + " And (c_active ='Y') "; try { if (!oPerson_group.SP_PERSON_GROUP_SEL(strCriteria, ref ds, ref strMessage)) { lblError.Text = strMessage; } else { GridView2.DataSource = ds.Tables[0]; GridView2.DataBind(); } } catch (Exception ex) { lblError.Text = ex.Message.ToString(); } finally { oPerson_group.Dispose(); ds.Dispose(); } }
private void BindGridView() { cPerson_group oPerson_group = new cPerson_group(); DataSet ds = new DataSet(); string strMessage = string.Empty; string strCriteria = string.Empty; string strperson_group_code = string.Empty; string strperson_group_name = string.Empty; string strScript = string.Empty; strperson_group_code = txtperson_group_code.Text.Replace("'", "''").Trim(); strperson_group_name = txtperson_group_name.Text.Replace("'", "''").Trim(); if (!strperson_group_code.Equals("")) { strCriteria = strCriteria + " And (person_group_code like '%" + strperson_group_code + "%') "; } if (!strperson_group_name.Equals("")) { strCriteria = strCriteria + " And (person_group_name like '%" + strperson_group_name + "%')"; } strCriteria = strCriteria + " And (c_active ='Y') "; try { if (oPerson_group.SP_PERSON_GROUP_SEL(strCriteria, ref ds, ref strMessage)) { if (ds.Tables[0].Rows.Count == 1) { strperson_group_code = ds.Tables[0].Rows[0]["person_group_code"].ToString(); strperson_group_name = ds.Tables[0].Rows[0]["person_group_name"].ToString(); strScript = "self.opener.document.forms[0].elements('" + ViewState["ctrl1"].ToString() + "').value='" + strperson_group_code + "';\n " + "self.opener.document.forms[0].elements('" + ViewState["ctrl2"].ToString() + "').value='" + strperson_group_name + "';\n" + "self.close(); \n"; ScriptManager.RegisterStartupScript(Page, Page.GetType(), "close", strScript, true); } else { ds.Tables[0].DefaultView.Sort = ViewState["sort"] + " " + ViewState["direction"]; GridView1.DataSource = ds.Tables[0]; GridView1.DataBind(); } } else { lblError.Text = strMessage; } } catch (Exception ex) { lblError.Text = ex.Message.ToString(); } finally { oPerson_group.Dispose(); ds.Dispose(); } }
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e) { string strMessage = string.Empty; string strCheck = string.Empty; string strScript = string.Empty; string strUpdatedBy = Session["username"].ToString(); Label lblperson_group_code = (Label)GridView1.Rows[e.RowIndex].FindControl("lblperson_group_code"); cPerson_group oPerson_group = new cPerson_group(); try { if (!oPerson_group.SP_PERSON_GROUP_DEL(lblperson_group_code.Text, "N", strUpdatedBy, ref strMessage)) { if (strMessage.Contains("REFERENCE constraint")) { MsgBox("ไม่สามารถลบข้อมูลได้เนื่องจากมีการนำไปใช้ในระบบแล้ว"); } else { lblError.Text = strMessage; } } } catch (Exception ex) { if (ex.Message.Contains("REFERENCE constraint")) { MsgBox("ไม่สามารถลบข้อมูลได้เนื่องจากมีการนำไปใช้ในระบบแล้ว"); } else { lblError.Text = ex.Message.ToString(); } } finally { oPerson_group.Dispose(); } BindGridView(0); }
private void BindGridView(int nPageNo) { cPerson_group oPerson_group = new cPerson_group(); DataSet ds = new DataSet(); string strMessage = string.Empty; string strCriteria = string.Empty; string strperson_group_code = string.Empty; string strperson_group_name = string.Empty; string strActive = string.Empty; strperson_group_code = txtperson_group_code.Text.Replace("'", "''").Trim(); strperson_group_name = txtperson_group_name.Text.Replace("'", "''").Trim(); if (!strperson_group_code.Equals("0")) { strCriteria = strCriteria + " And (person_group_code like '%" + strperson_group_code + "%') "; } if (!strperson_group_name.Equals("0")) { strCriteria = strCriteria + " And (person_group_name like '%" + strperson_group_name + "%')"; } if (RadioActive.Checked) { strCriteria = strCriteria + " And (c_active ='Y') "; } else if (RadioCancel.Checked) { strCriteria = strCriteria + " And (c_active ='N') "; } try { if (!oPerson_group.SP_PERSON_GROUP_SEL(strCriteria, ref ds, ref strMessage)) { lblError.Text = strMessage; } else { try { GridView1.PageIndex = nPageNo; txthTotalRecord.Value = ds.Tables[0].Rows.Count.ToString(); ds.Tables[0].DefaultView.Sort = ViewState["sort"] + " " + ViewState["direction"]; GridView1.DataSource = ds.Tables[0]; GridView1.DataBind(); } catch { GridView1.PageIndex = 0; txthTotalRecord.Value = ds.Tables[0].Rows.Count.ToString(); ds.Tables[0].DefaultView.Sort = ViewState["sort"] + " " + ViewState["direction"]; GridView1.DataSource = ds.Tables[0]; GridView1.DataBind(); } } } catch (Exception ex) { lblError.Text = ex.Message.ToString(); } finally { oPerson_group.Dispose(); ds.Dispose(); if (GridView1.Rows.Count > 0) { GridView1.TopPagerRow.Visible = true; } } }
private bool saveData() { bool blnResult = false; bool blnDup = false; string strMessage = string.Empty; string strperson_group_code = string.Empty, strperson_group_name = string.Empty, strActive = string.Empty, strCreatedBy = string.Empty, strUpdatedBy = string.Empty; string strScript = string.Empty; cPerson_group oPerson_group = new cPerson_group(); DataSet ds = new DataSet(); try { #region set Data strperson_group_code = txtperson_group_code.Text.Trim(); strperson_group_name = txtperson_group_name.Text; if (chkStatus.Checked == true) { strActive = "Y"; } else { strActive = "N"; } strCreatedBy = Session["username"].ToString(); strUpdatedBy = Session["username"].ToString(); #endregion if (ViewState["mode"].ToString().ToLower().Equals("edit")) { #region edit if (!blnDup) { if (oPerson_group.SP_PERSON_GROUP_UPD(strperson_group_code, strperson_group_name, strActive, strUpdatedBy, ref strMessage)) { blnResult = true; } else { lblError.Text = strMessage.ToString(); } } else { ScriptManager.RegisterStartupScript(Page, Page.GetType(), "frMainPage", strScript, true); } #endregion } else { #region check dup string strCheckDup = string.Empty; strCheckDup = " and person_group_code = '" + strperson_group_code.Trim() + "' "; if (!oPerson_group.SP_PERSON_GROUP_SEL(strCheckDup, ref ds, ref strMessage)) { lblError.Text = strMessage; } else { if (ds.Tables[0].Rows.Count > 0) { strScript = "alert(\"ไม่สามารถเพิ่มข้อมูล เนื่องจากข้อมูล " + strperson_group_code.Trim() + " : " + strperson_group_name.Trim() + " ซ้ำ\");\n"; blnDup = true; } } #endregion #region insert if (!blnDup) { if (oPerson_group.SP_PERSON_GROUP_INS(strperson_group_code, strperson_group_name, strActive, strCreatedBy, ref strMessage)) { ViewState["person_group_code"] = strperson_group_code; blnResult = true; } else { lblError.Text = strMessage.ToString(); } } else { ScriptManager.RegisterStartupScript(Page, Page.GetType(), "frMainPage", strScript, true); } #endregion } } catch (Exception ex) { lblError.Text = ex.Message.ToString(); } finally { oPerson_group.Dispose(); } return(blnResult); }