2.5登陆用户验证功能设计
一、制作效果
创建数据库表、管理员表(ADMIN)和收银员表(USERS)。
ADMIN.PNG USERS.PNG
制作登陆界面,用户类型分为收银员和库管员(comboBox控件实现),连接数据库当用户类型、用户名、密码和数据库的值一致时登陆并提示!库管员界面类似。
2.PNG 3.PNG
收银员登陆界面、制作DIM窗体来制作收银员界面和库管员界面,暂时当点击注销和退出时实现功能
4.PNG 5.PNG二、连接数据库方法(方法一)
连接数据库.gif步骤解析
1、视图——服务器资源管理器——数据连接——添加连接——选择Microsoft Visual Studio 2008——输入服务器名(.)——选择数据库表——完成连接(获得连接字符串)
连接字符串.PNG
三、ADM.NET流程
ADM.PNG四、主要代码
(一)、登陆界面
1、登陆按钮
// 点击“登录”按钮则登录系统
private void bt_Login_Click(object sender, EventArgs e)
{
String connStr = "Data Source=.;Initial Catalog=SuperMarketSales;Integrated Security=True";
SqlConnection sqlConn = new SqlConnection(connStr);
try
{
sqlConn.Open();
String sqlStr = "";
if (this.cbb_UserType.Text == "收银员")
{
// 注意USER是SQL Server关键字,表名不能命名为USER,而应当用USERS
sqlStr = "select * from USERS where ID=@id and PASSWORD=@pwd";
}
else
{
sqlStr = "select * from ADMIN where ID=@id and PASSWORD=@pwd";
}
SqlCommand cmd = new SqlCommand(sqlStr, sqlConn);
// 注意是用用户ID登录,而不是用户名,用户名可能会重复
cmd.Parameters.Add(new SqlParameter("@id", this.tb_User.Text.Trim()));
cmd.Parameters.Add(new SqlParameter("@pwd", this.tb_Password.Text.Trim()));
SqlDataReader dr = cmd.ExecuteReader();
// 如果从数据库中查询到记录,则表示可以登录
if (dr.HasRows)
{
dr.Read();
UserInfo.userId = int.Parse(dr["ID"].ToString());
UserInfo.userName = dr["NAME"].ToString();
UserInfo.userPwd = dr["PASSWORD"].ToString();
UserInfo.userPhone = dr["PHONE"].ToString();
UserInfo.userType = this.cbb_UserType.Text;
MessageBox.Show(UserInfo.userType + "登录成功");
if (UserInfo.userType == "收银员")
{
// 显示收银员主界面
MainFormUser formUser = new MainFormUser();
formUser.Show();
// 隐藏登录界面
this.Hide();
}
if (UserInfo.userType == "库管员")
{
// 显示库管员主界面
MainFormAdmin formAdmin = new MainFormAdmin();
formAdmin.Show();
// 隐藏登录界面
this.Hide();
}
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
catch (Exception exp)
{
MessageBox.Show("数据库连接失败");
}
finally
{
sqlConn.Close();
}
}
2、退出按钮
// 点击“退出”按钮则退出应用程序
private void bt_Exit_Click(object sender, EventArgs e)
{
Application.Exit();
}
3、默认用户类型(收银员)
// 窗口加载时,设置默认角色为“收银员”
private void frm_Login_Load(object sender, EventArgs e)
{
// 设置收银员为默认登录类型
this.cbb_UserType.SelectedIndex = 0;
// 禁止Tab键停留到LinkLabel上
this.ll_Register.TabStop = false;
this.ll_Forget.TabStop = false;
}
(二)、收银员、库管员界面
1、注销
// 注销当前登录,回到登录界面
private void tsmi_Logout_Click(object sender, EventArgs e)
{
if (MessageBox.Show("确认注销?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
{
// 重新启动程序,以显示登录窗口
Application.Restart();
}
}
退出
// 退出系统
private void tsmi_Exit_Click(object sender, EventArgs e)
{
if (MessageBox.Show("确认退出?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
{
Application.Exit();
}
}
网友评论