资源简介
简单 适合初学者
数据库连接部分
SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=chaoshi;Integrated Security=True");
con.Open();
String sql = "select * from [User]";
SqlCommand comm = new SqlCommand(sql, con);
SqlDataReader read = comm.ExecuteReader();
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data ;
using System.Data.SqlClient ;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void panel_OK_Paint(object sender PaintEventArgs e)
{
}
private void panel_Cancel_Paint(object sender PaintEventArgs e)
{
}
private void button1_Click(object sender EventArgs e)
{
if (textBox_Name.Text == ““ || textBox_Pass.Text == ““)
{
MessageBox.Show(“请将登录信息填写完整。“ “提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
}
else
{
string name = textBox_Name.Text;
string pass = textBox_Pass.Text;
SqlConnection con = new SqlConnection(“Data Source=.;Initial Catalog=chaoshi;Integrated Security=True“);
con.Open();
String sql = “select * from [User]“;
SqlCommand comm = new SqlCommand(sql con);
SqlDataReader read = comm.ExecuteReader();
while (read.Read())
{
int n = 0;
if ((read[0].ToString().Trim() == name) && (read[1].ToString().Trim() == pass))//Trim()函数是将字符串开头和结尾的空格去除
{
//DialogResult = DialogResult.OK;
//this.Close();
main frm2 = new main();
frm2.ShowDialog();
n = 1;
break;
}
if(n==0)
MessageBox.Show(“对不起,您的用户名/密码不正确,请重新输入“);
}
}
}
private void button2_Click(object sender EventArgs e)
{
this.Close();
}
}
} 属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 22016 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe
文件 30208 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb
文件 11600 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.vshost.exe
文件 490 2010-03-17 22:39 cdenglu\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.vshost.exe.manifest
文件 2261 2011-06-15 10:00 cdenglu\WindowsFormsApplication1\Form1.cs
文件 6666 2011-06-15 09:54 cdenglu\WindowsFormsApplication1\Form1.Designer.cs
文件 21453 2011-06-15 09:54 cdenglu\WindowsFormsApplication1\Form1.resx
文件 372 2011-06-15 09:43 cdenglu\WindowsFormsApplication1\main.cs
文件 1182 2011-06-15 09:43 cdenglu\WindowsFormsApplication1\main.Designer.cs
文件 2152 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6365 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 492 2011-06-15 09:54 cdenglu\WindowsFormsApplication1\obj\x86\Debug\GenerateResource.read.1.tlog
文件 1552 2011-06-15 09:54 cdenglu\WindowsFormsApplication1\obj\x86\Debug\GenerateResource.write.1.tlog
文件 1231 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.csproj.FileListAbsolute.txt
文件 22016 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.exe
文件 10721 2011-06-15 09:54 cdenglu\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Form1.resources
文件 30208 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.pdb
文件 180 2011-06-15 09:44 cdenglu\WindowsFormsApplication1\obj\x86\Debug\WindowsFormsApplication1.Properties.Resources.resources
文件 505 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\Program.cs
文件 1404 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\Properties\AssemblyInfo.cs
文件 2898 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\Properties\Resources.Designer.cs
文件 5612 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\Properties\Resources.resx
文件 1109 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\Properties\Settings.Designer.cs
文件 249 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\Properties\Settings.settings
文件 3891 2011-06-15 09:44 cdenglu\WindowsFormsApplication1\WindowsFormsApplication1.csproj
文件 914 2011-06-15 09:37 cdenglu\WindowsFormsApplication1.sln
..A..H. 20480 2011-06-15 10:00 cdenglu\WindowsFormsApplication1.suo
目录 0 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\obj\x86\Debug\TempPE
目录 0 2011-06-15 09:58 cdenglu\WindowsFormsApplication1\obj\x86\Debug
目录 0 2011-06-15 09:37 cdenglu\WindowsFormsApplication1\bin\Debug
............此处省略9个文件信息
相关资源
- C#解析HL7消息的库135797
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
川公网安备 51152502000135号
评论
共有 条评论