收藏 分享(赏)

2023年C系统登录.doc

上传人:sc****y 文档编号:986860 上传时间:2023-04-16 格式:DOC 页数:7 大小:21KB
下载 相关 举报
2023年C系统登录.doc_第1页
第1页 / 共7页
2023年C系统登录.doc_第2页
第2页 / 共7页
2023年C系统登录.doc_第3页
第3页 / 共7页
2023年C系统登录.doc_第4页
第4页 / 共7页
2023年C系统登录.doc_第5页
第5页 / 共7页
2023年C系统登录.doc_第6页
第6页 / 共7页
亲,该文档总共7页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、C系统 界面:Login.csusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication3 public partial class Login : Form public Login() InitializeComponent(); private void btnYes_Click

2、(object sender, EventArgs e) string userName = txtName.Text; string password = txtPwd.Text; if (userName = 伍晓忠 & password = 1234) MessageBox.Show(欢送进入成绩管理系统!, 登陆成功, MessageBoxButtons.OK, MessageBoxIcon.Information); else MessageBox.Show(你输入的用户名或密码错误!, 失败, MessageBoxButtons.OK, MessageBoxIcon.Exclama

3、tion); private void btnCancel_Click(object sender, EventArgs e) txtName.Text = ; txtPwd.Text = ; txtName.Focus(); 创立数据库:实现功能using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Data.

4、SqlClient;namespace WindowsApplication3 public partial class Login : Form public Login() InitializeComponent(); private void btnYes_Click(object sender, EventArgs e) string userName = txtName.Text; string password = txtPwd.Text; / string connString = Data Source= YJsqlexpress;Initial Catalog=MySchoo

5、l; Integrated Security=Ture; string connString = Data Source= 深度系统sqlexpress;Initial Catalog=MySchool; trusted_connection=true; / pc-202307051235sqlexpress SqlConnection connection = new SqlConnection(connString); /获取用户名和密码匹配的行的数量的SQL语句 string sql =String.Format(select count(x) from User where userN

6、ame=0 and password=1,userName,password); try connection.Open();/翻开数据库连接 SqlCommand command = new SqlCommand(sql,connection);/创立Command对象 int num = (int)command.ExecuteScalar();/执行查询语句,返回匹配的行数 if (num 0) /如果有匹配的行,那么说明用户名和密码正确 MessageBox.Show(欢送进入成绩管理系统!, 登陆成功, MessageBoxButtons.OK, MessageBoxIcon.Inf

7、ormation); MainFrm mainForm = new MainFrm(); /创立主窗体对象 mainForm.Show(); /显示窗体 this.Visible = false; /登陆窗体隐藏 else MessageBox.Show(你输入的用户名或密码错误!, 失败, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); catch (Exception ex) MessageBox.Show(ex.Message,操作数据库出错!,MessageBoxButtons.OK,MessageBoxIcon.Exclamati

8、on); finally connection.Close(); private void btnCancel_Click(object sender, EventArgs e) txtName.Text = ; txtPwd.Text = ; txtName.Focus(); private void Login_Load(object sender, EventArgs e) 主窗体创立代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication3 public partial class MainFrm : Form public MainFrm() InitializeComponent(); private void MainFrm_Load(object sender, EventArgs e)

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 资格与职业考试 > 其它

copyright@ 2008-2023 wnwk.com网站版权所有

经营许可证编号:浙ICP备2024059924号-2