c#判断是否弹出对话框
发布网友
发布时间:2024-10-24 01:12
我来回答
共5个回答
热心网友
时间:9分钟前
操作数据库,返回受影响行数,当受影响大於0,说明操作成功,可以通过JS脚本,弹出对话框:入alert(“。。。”)confirm(“。。。”)
热心网友
时间:10分钟前
SqlCommand cmd =new SqlCommand(sql);
cmd.ExecuteNonQuery()>0?MessageBox("添加成功"):MessageBox("添加失败");
热心网友
时间:3分钟前
操作数据库,返回受影响行数,当受影响大於0,说明操作成功
热心网友
时间:6分钟前
SqlConnection conn =new SqlConnection(connString);
string sql=insert into .....;//插入语句
SqlCommand command=new SqlCommand(sql,conn);
int result=command.ExecuteNonQuery();//得到结果,看是否有插入成功。
if(result>0)
{
MessageBox.Show("插入成功!");//返回影响的行数大于0表示插入成功
}
else
{
MessageBox.Show("插入失败!");
}
热心网友
时间:1分钟前
只从那个对话框判断,这个,可能得用API函数取得对话框的句柄,然后再判断。
http://zhidao.baidu.com/question/119142268.html