后台代码只需要写ListView.DataSource=从数据库中查询到的结果;ListView.DataBind();就可以显示出来数据了
private void listView1_Click(object sender, EventArgs e)//listview点击事件{
if (this.listView1.SelectedItems == null) return
ListViewItem item = this.listView1.SelectedItems[0]//选中的ltem
if (this.comboBox1.SelectedIndex == -1) return
if (item == null) return
//把每一项里的值取出来
string a = item.SubItems[0].Text.ToString()
string b = item.SubItems[1].Text.ToString()
string c = item.SubItems[2].Text.ToString()
string d = item.SubItems[3].Text.ToString()
}
然后你用ADO连接数据库,写insert语句,把取出来的值当参数传给SQL语句。就可以了 思路大概是这样的,希望你帮助你~
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)