资源简介
学籍管理系统,用vs2008和算起来sql2005
代码片段和文件信息
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.SqlClient;
using System.Data.SqlTypes;
namespace 学籍管理系统
{
public partial class Form1 : Form
{
string connectionString = @“Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\学籍管理系统.mdf;“
+ “Integrated Security=True;Connect Timeout=60;User Instance=True“;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
string[] items1 = { “管理员“ “学生“ };
comboBox1.Items.AddRange(items1);
}
private void button1_Click(object sender EventArgs e)
{
if (this.textBox1.Text == ““ || this.textBox2.Text == ““)
{
MessageBox.Show(“用户名或密码不能为空!“ “系统提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
this.textBox1.Focus();
}
else
{
using (SqlConnection conn = new SqlConnection(connectionString))
try
{
string str = “select * from 身份鉴定表 where 用户名=‘“ + this.textBox1.Text.Trim() + “‘“;
conn.Open();
SqlCommand cmd = new SqlCommand(str conn);
SqlDataReader read = cmd.ExecuteReader();
if (read.Read())
{
if (comboBox1.Text.Trim() != “管理员“) { MessageBox.Show(“用户类型错误“); }
else
{
if (textBox2.Text.Trim() == read[“密码“].ToString().Trim() && comboBox1.Text.Trim() == “管理员“)
{
this.Hide();
Form2 fm = new Form2();
fm.ShowDialog();
}
else
{
MessageBox.Show(“密码错误“ “系统提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
textBox2.Clear();
textBox2.Focus();
}
}
}
else
{
MessageBox.Show(“不存在该用户“);
}
conn.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
private void button2_Click(object sender EventArgs e)
{
if (
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 478 2009-12-31 18:05 07级1班21号赵慧贤学籍管理系统\学籍管理系统\app.config
文件 261632 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统.exe
文件 478 2009-12-31 18:05 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统.exe.config
文件 3145728 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统.mdf
文件 312832 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统.pdb
文件 14328 2010-01-07 22:10 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统.vshost.exe
文件 478 2009-12-31 18:05 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统.vshost.exe.config
文件 490 2007-07-21 01:33 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统.vshost.exe.manifest
文件 1048576 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\bin\Debug\学籍管理系统_log.ldf
文件 5473 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form1.cs
文件 8756 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form1.Designer.cs
文件 11499 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form1.resx
文件 5911 2010-01-02 21:48 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form2.cs
文件 14452 2009-12-31 23:47 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form2.Designer.cs
文件 6012 2009-12-31 23:47 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form2.resx
文件 4555 2010-01-02 21:45 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form3.cs
文件 14370 2010-01-02 21:45 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form3.Designer.cs
文件 6012 2010-01-02 21:45 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Form3.resx
文件 377 2010-01-01 00:44 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Help.cs
文件 4502 2010-01-01 00:44 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Help.Designer.cs
文件 5814 2010-01-01 00:44 07级1班21号赵慧贤学籍管理系统\学籍管理系统\Help.resx
文件 102400 2010-01-02 22:02 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\TempPE\学籍管理系统DataSet.Designer.cs.dll
文件 2384 2010-01-07 22:10 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.csproj.FileListAbsolute.txt
文件 1464 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.csproj.GenerateResource.Cache
文件 261632 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.exe
文件 4079 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.Form1.resources
文件 180 2010-01-02 22:07 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.Form2.resources
文件 180 2010-01-02 22:07 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.Form3.resources
文件 180 2010-01-02 22:07 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.Help.resources
文件 312832 2010-01-07 21:58 07级1班21号赵慧贤学籍管理系统\学籍管理系统\obj\Debug\学籍管理系统.pdb
............此处省略57个文件信息
评论
共有 条评论