用c#写GridView自定义编辑和删除怎么样写啊?gridview编辑

6小时前 (01:05:07)阅读1回复0
花花
花花
  • 管理员
  • 注册排名3
  • 经验值300760
  • 级别管理员
  • 主题60152
  • 回复0
楼主
  1. 用c#写GridView自定义编辑和删除怎么样写啊?

用c#写GridView自定义编辑和删除怎么样写啊?

用c#写GridView自定义编辑和删除怎么样写啊?gridview编辑

protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e) { string delID = GridView1.Rows[e.RowIndex].Cells[1].Text; //cells[1]中的1是GridView1中字段的下标值从0开始 string sqlstr="delete from table where id="+delID+""; 执行sqlstr即可删除此条记录} protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e) { //第一种方式直接在gridview页面中把值赋给此页面的控件上 Textbox.Text = GridView1.Rows[e.NewEditIndex].Cells[1].Text; //第二种把ID赋给某个变量穿到修改页面进行修改操作 string ID=GridView1.Rows[e.NewEditIndex].Cells[1].Text; Response.Redirect("updatePage?ID="+ID+"");}

0
回帖

用c#写GridView自定义编辑和删除怎么样写啊?gridview编辑 期待您的回复!

取消
载入表情清单……
载入颜色清单……
插入网络图片

取消确定

图片上传中
编辑器信息
提示信息