C#登录界面 为什么我输入了用户名和密码 显示messagebox说不对啊?我admin数据库里面确实存有啊
privatevoidregisterbutton_Click(objectsender,EventArgse){//连接打开数据库stringconStr=@"Prov...
private void registerbutton_Click(object sender, EventArgs e)
{
//连接打开数据库
string conStr = @"Provider=microsoft.ace.oledb.12.0;Data Source=E:\kaoshi system\WindowsFormsApplication1\WindowsFormsApplication1\kaoshi.accdb";
OleDbConnection con = new OleDbConnection(conStr);
con.Open();
string cmdStr = "select * from admin where no=" + this.numbertextBox.Text + " and password= " + this.passwordtextBox.Text + " ";
OleDbCommand cmd = new OleDbCommand(cmdStr, con);
OleDbDataReader reader = cmd.ExecuteReader();
if (reader.Read()) //如果找到用户信息,说明登录成功
{
manage amanage = new manage();
amanage.Show();//弹出主窗体
this.Hide(); //隐藏用户登录窗体
}
else
{
Times++;
if (Times == 3)
{
MessageBox.Show("密码错误3次,请查询或咨询监考老师后登录!");
this.Close();
}
else
{
MessageBox.Show("用户名或密码错误!");
//密码输入错误3次,就退出系统
numbertextBox.Text = "";
passwordtextBox.Text = "";
}
}
reader.Close();
cmd.Connection.Close();
oleDbConnection1.Close();
} 展开
{
//连接打开数据库
string conStr = @"Provider=microsoft.ace.oledb.12.0;Data Source=E:\kaoshi system\WindowsFormsApplication1\WindowsFormsApplication1\kaoshi.accdb";
OleDbConnection con = new OleDbConnection(conStr);
con.Open();
string cmdStr = "select * from admin where no=" + this.numbertextBox.Text + " and password= " + this.passwordtextBox.Text + " ";
OleDbCommand cmd = new OleDbCommand(cmdStr, con);
OleDbDataReader reader = cmd.ExecuteReader();
if (reader.Read()) //如果找到用户信息,说明登录成功
{
manage amanage = new manage();
amanage.Show();//弹出主窗体
this.Hide(); //隐藏用户登录窗体
}
else
{
Times++;
if (Times == 3)
{
MessageBox.Show("密码错误3次,请查询或咨询监考老师后登录!");
this.Close();
}
else
{
MessageBox.Show("用户名或密码错误!");
//密码输入错误3次,就退出系统
numbertextBox.Text = "";
passwordtextBox.Text = "";
}
}
reader.Close();
cmd.Connection.Close();
oleDbConnection1.Close();
} 展开
TableDI
2024-07-18 广告
2024-07-18 广告
`VLOOKUP` 匹配出错误的数据通常是由于以下几个原因:1. **查找值错误**:输入的查找值与数据源中的值不匹配,可能是因为拼写错误、大小写不一致或存在不可见的字符。2. **查找区域设置错误**:查找区域的首列必须包含要查找的值,且...
点击进入详情页
本回答由TableDI提供
展开全部
把你出错信息发来看看撒
追问
没有出错 就是直接出MESSAGEBOX
貌似没有查找数据库的用户名密码
if (reader.Read()) //如果找到用户信息,说明登录成功
{
manage amanage = new manage();
amanage.Show();//弹出主窗体
this.Hide(); //隐藏用户登录窗体
}
没有进行这个东西
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询