摘要:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { CheckBox chk = (CheckBox)e.Row.FindControl("CheckBox1"); e.Row.Attributes["onclick"] = chk.ClientID + ".checked=!" + ... 阅读全文