protected void lbuRefresh_Click(object sender, EventArgs e) { ClearData(); ClassCountry c = new ClassCountry(); DataTable dt = c.GetCountry(""); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); }
protected void lbuSearch_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtSearchCountryName.Text)) { ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('กรุณากรอก คำค้นหา')", true); return; } else { ClassCountry c = new ClassCountry(); DataTable dt = c.GetCountry(txtSearchCountryName.Text); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); } }
protected void lbuSubmit_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtInsertCountryName.Text)) { ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('กรุณาใส่ ชื่อประเทศ')", true); return; } ClassCountry c = new ClassCountry(); c.COUNTRY_TH = txtInsertCountryName.Text; if (c.CheckUseCountryName()) { c.InsertCountry(); BindData(); ClearData(); ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('เพิ่มข้อมูลเรียบร้อย')", true); } else { ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('ข้อมูลที่จะเพิ่ม มีอยู่ในระบบแล้ว !')", true); } }
protected void modDeleteCommand(Object sender, GridViewDeleteEventArgs e) { int id = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value); ClassCountry c = new ClassCountry(); c.COUNTRY_ID = id; c.DeleteCountry(); ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('ลบข้อมูลเรียบร้อย')", true); GridView1.EditIndex = -1; BindData1(); }
void BindData1() { ClassCountry c = new ClassCountry(); DataTable dt = c.GetCountry(txtSearchCountryName.Text); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); }
void BindData() { ClassCountry c = new ClassCountry(); DataTable dt = c.GetCountry(""); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); }
protected void modUpdateCommand(Object sender, GridViewUpdateEventArgs e) { Label lblCountryIDEDIT = (Label)GridView1.Rows[e.RowIndex].FindControl("lblCountryIDEDIT"); TextBox txtCountryNameEDIT = (TextBox)GridView1.Rows[e.RowIndex].FindControl("txtCountryNameEDIT"); ClassCountry c = new ClassCountry(Convert.ToInt32(lblCountryIDEDIT.Text), txtCountryNameEDIT.Text); if (c.CheckUseCountryName()) { c.UpdateCountry(); ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('อัพเดทข้อมูลเรียบร้อย')", true); GridView1.EditIndex = -1; BindData1(); } else { ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('ข้อมูลที่จะอัพเดท มีอยู่ในระบบแล้ว !')", true); } }