成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

gridview刪除當(dāng)前行 用c#寫GridView自定義編輯和刪除怎么樣寫???

用c#寫GridView自定義編輯和刪除怎么樣寫???protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArg

用c#寫GridView自定義編輯和刪除怎么樣寫???

protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e) { string delID = GridView1.Rows[e.RowIndex].Cells[1].Text //cells[1]中的1是GridView1中字段的下標(biāo)值從0開始 string sqlstr="delete from table where id=" delID "" 執(zhí)行sqlstr即可刪除此條記錄} protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e) { //第一種方式直接在gridview頁面中把值賦給此頁面的控件上 Textbox.Text = GridView1.Rows[e.NewEditIndex].Cells[1].Text //第二種把ID賦給某個(gè)變量穿到修改頁面進(jìn)行修改操作 string ID=GridView1.Rows[e.NewEditIndex].Cells[1].Text Response.Redirect("updatePage?ID=" ID "")}