protected void Button1_Click(object sender, EventArgs e) { foreach (GridViewRow grow in GridView1.Rows) { CheckBox checkboxselect = (grow.FindControl("CheckBox1") as CheckBox); int ID = Convert.ToInt32(grow.Cells[1].Text); updaterow(ID, Label1.Text); bindgrid(); } } private void updaterow(int ID, String markstatus) { string mycon = "Data Source = WAKDATABASE; Initial Catalog = OT; Persist Security Info=True;user ID = sa; password=P@ssw0rd"; string updatedata = "update Detail set mg='" + Label1.Text + "' where ID=" + ID; SqlConnection con = new SqlConnection (mycon); if (con.State == ConnectionState.Closed) con.Open(); cmd.CommandText = updatedata; cmd.Connection =con; cmd.ExecuteNonQuery(); con.Close(); bindgrid(); }
void Button1_Click(object sender,EventArgs e) { CheckBox chkCusID; Label lblID; int i; lblText.Text = ""; for( i = 0; i <= myGridView.Rows.Count - 1; i++) { chkCusID = (CheckBox)myGridView.Rows[i].FindControl("chkCustomerID"); lblID = (Label)myGridView.Rows[i].FindControl("lblCustomerID"); if(chkCusID.Checked) { //*** Have lblID.Text ***// this.lblText.Text = this.lblText.Text + "<br>" + lblID.Text; } } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง