回复 7楼 mjx5
对了,使用dataset数据集操作。
DialogResult result = MessageBox.Show("确认保存数据吗?","操作提示",MessageBoxButtons.OKCancel ,MessageBoxIcon.Question );
if (result ==DialogResult .OK )
{
SqlCommandBuilder cb = new SqlCommandBuilder(sda );
sda.Update(ds,"StudentTable");
}
前面的代码会写吧,应该就可以啦。