protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
if (Session["UserName"] == null && Session["UserPwd"] == null)
{
Response.Redirect("~/denglu.aspx");
}
else
{
if (Session["UserName"].ToString() == "Tsoft" && Session["UserPwd"].ToString() == "111")
{
string UserId = this.GridView1.DataKeys[e.RowIndex].Value.ToString();
SqlConnection con = DB.createDB();
con.Open();
SqlCommand cmd = new SqlCommand("delete from tb_Users where (UserName NOT IN ('Tsoft')) AND UserId='" + UserId + "' ", con);
cmd.ExecuteNonQuery();
this.aa();
this.GridView1.EditIndex = -1;
}
else
{
Response.Write("<script>alert('你没有权限删除,必须是管理员才能进行删除操作!');location='javascript:history.go(-1)'</script>"); } }
ASP.NET问题 GridView中e.rowindex需要什么命名空间
命名空间就是 System.Web.UI下的,其实就不需要另外引入。GridView只有特定事件的EventArg才有这个属性,和命名空间无关。如RowDataBound,其EventArg就有这个属性。记忆中只有关于行的事件才会有这个RowIndex,还有如RowDeleting,RowEditing等。详细的你可以一个个事件加载上,在代码看一看。