listView1 与contextMenuStrip1的用法
我要用contextMenuStrip1删除listView1 里面选中的数据包括删除数据库中的数据private void 删除ToolStripMenuItem_Click(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection(cstr);
conn.Open();
int id = Convert.ToInt32(listView1.);//此处代码请教大神怎么打
string sql = string.Format("delete from Student where StudentId='{0}'",id);
SqlCommand cmd = new SqlCommand(sql,conn);
int a = cmd.ExecuteNonQuery();
if (a > 0)
{
MessageBox.Show("删除成功");
}
else if (a==0){
MessageBox.Show("删除失败");
}
}