0

我正在为 asp.net C# 中的评论系统编码,但我在删除命令处停止,因为我没有使用任何类型的序列号来发布评论,那么我怎样才能删除特定评论,我只是使用评论中的用户名、日期、时间和文本。谁能帮我在这种情况下如何使用删除命令?

这是我的发布代码:protected void pospost_Click(object sender, EventArgs e) {

    string login;
    if (HttpContext.Current.Session["UserName"] != null)
    {
        login = HttpContext.Current.Session["UserName"].ToString();
        con.Open();
        SqlCommand cmd = new SqlCommand();
        cmd.Connection = con;
        cmd.CommandText = "select * from mobiles_pos";
        da = new SqlDataAdapter(cmd);
        ds = new DataSet();
        da.Fill(ds);

        DataRow rw = ds.Tables[0].NewRow();
        rw[0] = Model.Text.ToString();
        rw[1] = titlepos.Text.ToString();
        rw[2] = txtpos.Text.ToString();
        rw[3] = DateTime.Today.Date.ToString();
        rw[4] = DateTime.Now.TimeOfDay.ToString();
        rw[5] = login.ToString();

        ds.Tables[0].Rows.Add(rw);
        SqlCommand cmd1 = new SqlCommand();
        cmd1.Connection = con;
        cmd1.CommandText = "insert into mobiles_pos values('" + Model.Text + "','" + titlepos.Text + "','" + txtpos.Text + "','" + DateTime.Today.Date + "','" + DateTime.Now.TimeOfDay + "','" + login + "')";
        da.InsertCommand = cmd1;
        da.Update(ds);

        con.Close();

        titlepos.Text = "";
        txtpos.Text = "";
        //DataList2.DataSource = ds;
        //DataList2.DataBind();
        BindDataList2();
    }
}
4

1 回答 1

1

最佳 - 将主键添加到“mobiles_pos”表,因为您使用 sql 只需使用一个身份字段,它将为您自动递增。

或者

快速 - 使用用户名和日期注释的组合,您必须使用完整的日期时间,否则它将删除用户当天输入的所有内容。

"Delete from mobiles_pos where username = @UserName and createdDate = @createdDate"
于 2013-05-16T15:36:54.377 回答