private void btnLogin_Click(object sender, EventArgs e)
{
if (txtLoginld.Text == null||txtLoginld.Text=="")
{
MessageBox.Show("请输入用户名","提示",MessageBoxButtons.OK
,MessageBoxIcon.Information);
txtLoginld.Focus();
}
else if (txtLoginPwd.Text == null || txtLoginPwd.Text == "")
{
MessageBox.Show("请输入密码","提示",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
txtLoginPwd.Focus();
}
else if (cboLoginType.Text == null||cboLoginType.Text=="")
{
MessageBox.Show("请选择登陆类型","提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
cboLoginType.Focus();
}
bool end = false; //定义个bool值end
end = userpanduan(txtLoginld.Text,txtLoginPwd.Text,cboLoginType.Text);
if (end && cboLoginType.Text == "管理员")
{
Userhelper.loginId = txtLoginld.Text;//接受用户名
MySchool my = new MySchool();
my.Show();
}
else if ((txtLoginld.Text != null || txtLoginld.Text != "") && (txtLoginPwd.Text != null || txtLoginPwd.Text != ""))
{
MessageBox.Show("用户名或密码错误!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
private bool userpanduan(string txtLoginld, string txtLoginpwd, string cboLoginType)
{
string constring = ("data source=.;initial catalog=myschool;user id=sa;pwd=123") ;
SqlConnection connection = new SqlConnection(constring);//接受登陆信息
try
{
string sql = string.Format("select count(*) from admin where LoginId='{0}' and LoginPwd='{1}'", txtLoginld, txtLoginpwd);
SqlCommand command = new SqlCommand(sql,connection);
connection.Open();//打开数据库
int num = (int)command.ExecuteScalar();// 接受返回一个数值
if (num >= 1)
{
return true;
}
else
{
return false;
}
}
catch
{
MessageBox.Show("发生末知错误!");
return false;
}
finally
{
connection.Close();//关闭数据库
}
}
我是这样想的 如果账号和错误 就显示对话框 用户名或密码错误!
但是我现在 没有填写 账号或密码 他也会显示出这个
但是我想让 用户忘记 输入账号和密码的时候 他不显示这个对话框,
如何实现呢
个人觉得 我写的也是正确的 不知道为什么还是出错?
80分!c#高手进 为toolstripmenuItem添加keyPress事件
既然toolstripmenuItem里没有KeyPress事件,你添加一个有KeyPress事件的控件不就行了吗,比如添加一个RichTextBox、Label什么的,代码如下 RichTextBox richTextbox = new RichTextBox();private void button1_Click(object sender, EventArgs e){ richTextbox.Size = new Size(100, 100);richTextbox...
...看补充。谢谢了。80分希望能找到解答,感兴趣的互相学习
1:利用配置文件保存窗体的新加信息。每次打开窗体时先检查配置文件,读出按键信息并加到页面上;每新加按钮时,同时将对应按钮信息添加到配置文件。注:按钮信息包含名称、位置坐标、响应事件等(你的例子好像只要个数就够了)。2:可以让所有的按钮都响应同一个单击事件(如你的butClick),只是在单击事...
关于asp.net (C#)控制新闻标题显示条数的问题!高手请进。
TempStr += "<TD class=sSign width=\\"80%\\" style=\\"line-height:22px\\">";TempStr += "";} TempStr += "";return TempStr;} 大致就是这样的
【急】C# 一个自动复制文本框内容 简单的问题
private void 选择_Click(object sender, EventArgs e){ TextBox tb= (TextBox)sender;tb.SelectAll();tb.Copy();}
浙江高考python满分多少(浙江高考满分多少分2018)
今天首席CTO笔记来给各位分享关于浙江高考python满分多少的相关内容,其中也会对浙江高考满分多少分2018进行详细介绍,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧! 本文目录一览: 1、Python纳入高考了吗2、2022浙江高考技术有python吗3、高考考python编程的有哪些省?4、如何看待浙江17级高考技术考python5...
国开学习指南网上作业答案
c. “以解答问题为中心”d. “以提供咨询为中心”题目10学生在申请国家开放大学奖学金或优秀毕业生时,先向其所在的( b )提交申请表。选择一项:a. 学院b. 学习中心c. 分部d. 总部三、多选题(每题2分,共计10分)题目11国家开放大学学生事务服务的项目包括哪些:( adefg )选择一项或多项:a. 学生活动b. ...