0

私はasp.net C#でコメントシステムをコーディングしていますが、投稿されたコメントにシリアル番号を使用していないため、deleteコマンドで停止しています。特定のコメントを削除するにはどうすればよいですか?コメント内のユーザー名、日付、時刻、およびテキスト。この状態で削除コマンドを使用する方法を教えてください。

投稿用のコードは次のとおりです。 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