如何实现留言板的留言按删除只删除一条,求大神帮助

来源:互联网 发布:python 多行注释快捷键 编辑:程序博客网 时间:2024/06/06 01:53

这是前台的代码

下面是后台的

        string id = null;
        protected void click5(object sender, CommandEventArgs e)
        {
            //string id = ((LinkButton)sender).CommandArgument.ToString();报错
            //管理员权限成功,但是删除把这个人的全部都删除了,要加入一个时间的传递值
            id = (string)e.CommandArgument;  
            if ((string)Session["abc"] == "ceshi1")
            {
                SqlConnection con = new SqlConnection("data source=127.0.0.1;initial catalog=cao;persist security info=False;user id=nima;password=123;");
                con.Open();
                SqlCommand cmd = new SqlCommand("delete from word where name = '" + id + "'", con);
                cmd.ExecuteNonQuery();
                con.Close();
                Response.Redirect("youxi.aspx");
            }
           if ((string)Session["abc"] == (string)id)
            {
               SqlConnection con = new SqlConnection("data source=127.0.0.1;initial catalog=cao;persist security info=False;user id=nima;password=123;");
                con.Open();
                SqlCommand cmd = new SqlCommand("delete from word where name = '" + id + "'", con);
                cmd.ExecuteNonQuery();
                con.Close();
               Response.Redirect("youxi.aspx");
            }
            else
            {
              Response.Write("<script>alert('权限不足');location.href='youxi.aspx';</script>");
            }
        }
        }

求助

原创粉丝点击