文件名称:c# 宾馆管理系统
文件大小:6.28MB
文件格式:RAR
更新时间:2016-04-28 02:30:16
c# sqlserver 2008
private void button1_Click(object sender, System.EventArgs e) { string name=this.textBox1.Text.Trim(); string pass=this.textBox2.Text.Trim(); if(name==""||pass=="") { MessageBox.Show("请填写完整!"); return; } try { SetupAddAdminInfo Add=new SetupAddAdminInfo(); if(Add.AddAdminInfo(name,pass)) { MessageBox.Show("添加成功"); } else { MessageBox.Show("添加失败"); } } catch { MessageBox.Show("该登陆名已经存在!"); } }