protected void lbuRefresh_Click(object sender, EventArgs e) { ClearData(); ClassStatusPerson sp = new ClassStatusPerson(); DataTable dt = sp.GetStatusPerson(""); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); }
protected void lbuSearch_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtSearchStatusPersonName.Text)) { ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('กรุณากรอก คำค้นหา')", true); return; } else { ClassStatusPerson sp = new ClassStatusPerson(); DataTable dt = sp.GetStatusPerson(txtSearchStatusPersonName.Text); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); } }
void BindData1() { ClassStatusPerson sp = new ClassStatusPerson(); DataTable dt = sp.GetStatusPerson(txtSearchStatusPersonName.Text); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); }
void BindData() { ClassStatusPerson sp = new ClassStatusPerson(); DataTable dt = sp.GetStatusPerson(""); GridView1.DataSource = dt; GridView1.DataBind(); SetViewState(dt); }