资源简介
源代码,一看就知道!开头部分,下面的自己下载下来看吧!
public partial class LoginForm : Form{
public static string uacc;
public static string upsw;
public static string uname;
public static string usex;
public static string upart;
public static string uright;
public LoginForm()
{
InitializeComponent();
}
private void loginbtn_Click(object sender, EventArgs e)
{
if (this.useracctxt.Text.Trim() == "" && this.pswtxt.Text == "")
{
MessageBox.Show("请输入您的用户名和密码!", "提示!");
return;
}
try
{
string sql;
sql = "select * from tb_user where uacc='" + this.useracctxt.Text + "' and upsw='" + this.pswtxt.Text + "'";
OleDbDataReader dr = DBHelp.OleReader(sql);
dr.Read();
if (dr.HasRows)
{
uacc = this.useracctxt.Text;
upsw = this.pswtxt.Text;
uname = dr["uname"].ToString();
usex = dr["usex"].ToString();
upart = dr["upart"].ToString();
uright = dr["uright"].ToString();
MainForm af = new MainForm(this);
this.Hide();
this.useracctxt.Clear();
this.pswtxt.Clear();
af.Show();
}
else
{
MessageBox.Show("账号或密码错误!", "提示!");
this.useracctxt.Clear();
this.pswtxt.Clear();
this.useracctxt.Focus();
}
}
catch (Exception)
{
MessageBox.Show("数据库无法连接!", "警告!");
}
}
private void cancelbtn_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void Logi
代码片段和文件信息
相关资源
- 用C#实现跳马问题程序
- C#取得SysListView32所有行(包括列表头
- C#WinForm版 《仿360杀毒页面切换动画效
- 一个很不错的C#录音控件源码,帮您提
- c# winfrom实现票据打印系统源代码自己
- C# 语法全解
- 用c#实现窗体绘制椭圆,圆,矩形
- ASP.NET简单留言板(C#)
- C# 串口源码
- C#多线程开发多个
- C#微信企业号接收和发送消息
- C#access数据库连接的代码解释
- c#经典图书管理系统
- ArcGIS+Engine+C#
- C#的一个简单的图书管理系统
- C# webbrowser扩展组件-IEBrowser.2.5.
- C# lexer 语法解析器
- delphi转c#破解版
- 真正能用 c# 摄像头 控制 截屏 拍照
- C# winform/web导出EXCEL
- 用C#语言做的GUI图形界面的贪吃蛇
- c#做的学生选课系统代码完整
- C#抓屏识别汉字源码
- 基于SMTP和POP3协议的EMAIL收发软件
- C#读取txt文本文件存入sql
- 51单片机8路舵机及C#上位机程序
- 高斯正反算C#实现
- C#实现拼音模糊查询
- c# 任务管理器 查看内存,CPU,进程
- C#控制台贪吃蛇
评论
共有 条评论