资源简介
这是一个基于C#的学生管理系统,可以作为C#的课程设计。
代码片段和文件信息
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 Library.Dao;
using System.Data.SqlClient;
using Library.Class;
namespace Student_Course_System
{
public partial class Form1 : Form
{
Connection conn = new Connection();
string sql = ““;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
List list = new List();
list.Add(new Items(0 “管理员登录“));
list.Add(new Items(1 “学生登录“));
comboBox1.DataSource = list;
comboBox1.DisplayMember = “Text“;
comboBox1.ValueMember = “Value“;
}
private void button1_Click(object sender EventArgs e)
{
string username = textBox1.Text;
string password = textBox2.Text;
if (username != ““ && password != ““)
{
if (Convert.ToInt32(comboBox1.SelectedValue) == 0)
{
sql = “select COUNT(*) from Admin where loginName=‘“ +username+ “‘ and password=‘“ +password+ “‘;“;
if (conn.getRow(sql) > 0)
{
Form2 f2 = new Form2(username);
this.Hide();
f2.ShowDialog();
}
else
{
MessageBox.Show(“管理员不存在或密码错误“);
}
}
else if (Convert.ToInt32(comboBox1.SelectedValue) == 1)
{
sql = “select COUNT(*) from Student where stuID=‘“ +username+ “‘ and password=‘“ +password+ “‘;“;
if (conn.getRow(sql) > 0)
{
Form7 f7 = new Form7(username);
this.Hide();
f7.ShowDialog();
}
else
{
MessageBox.Show(“学号未注册或密码错误“);
}
}
}
else
{
MessageBox.Show(“用户名或者密码不能为空“);
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 47104 2016-05-28 17:10 学生成绩管理系统\Student_Course_System\Student_Course_System\bin\Debug\Student_Course_System.exe
文件 105984 2016-05-28 17:10 学生成绩管理系统\Student_Course_System\Student_Course_System\bin\Debug\Student_Course_System.pdb
文件 11600 2016-05-28 17:06 学生成绩管理系统\Student_Course_System\Student_Course_System\bin\Debug\Student_Course_System.vshost.exe
文件 490 2012-06-06 02:06 学生成绩管理系统\Student_Course_System\Student_Course_System\bin\Debug\Student_Course_System.vshost.exe.manifest
文件 594 2016-05-27 14:59 学生成绩管理系统\Student_Course_System\Student_Course_System\Class\Items.cs
文件 1804 2016-05-28 17:10 学生成绩管理系统\Student_Course_System\Student_Course_System\Dao\Connection.cs
文件 2492 2016-05-28 15:49 学生成绩管理系统\Student_Course_System\Student_Course_System\Form1.cs
文件 4878 2016-05-27 15:06 学生成绩管理系统\Student_Course_System\Student_Course_System\Form1.Designer.cs
文件 5817 2016-05-27 15:06 学生成绩管理系统\Student_Course_System\Student_Course_System\Form1.resx
文件 10658 2016-05-28 16:16 学生成绩管理系统\Student_Course_System\Student_Course_System\Form2.cs
文件 17481 2016-05-28 11:52 学生成绩管理系统\Student_Course_System\Student_Course_System\Form2.Designer.cs
文件 5817 2016-05-28 16:16 学生成绩管理系统\Student_Course_System\Student_Course_System\Form2.resx
文件 2434 2016-05-28 15:26 学生成绩管理系统\Student_Course_System\Student_Course_System\Form3.cs
文件 8117 2016-05-27 18:05 学生成绩管理系统\Student_Course_System\Student_Course_System\Form3.Designer.cs
文件 6020 2016-05-27 18:05 学生成绩管理系统\Student_Course_System\Student_Course_System\Form3.resx
文件 3338 2016-05-28 15:35 学生成绩管理系统\Student_Course_System\Student_Course_System\Form4.cs
文件 8913 2016-05-27 18:39 学生成绩管理系统\Student_Course_System\Student_Course_System\Form4.Designer.cs
文件 5817 2016-05-27 18:39 学生成绩管理系统\Student_Course_System\Student_Course_System\Form4.resx
文件 3547 2016-05-28 16:30 学生成绩管理系统\Student_Course_System\Student_Course_System\Form5.cs
文件 7782 2016-05-28 15:07 学生成绩管理系统\Student_Course_System\Student_Course_System\Form5.Designer.cs
文件 5817 2016-05-28 15:07 学生成绩管理系统\Student_Course_System\Student_Course_System\Form5.resx
文件 2799 2016-05-28 15:26 学生成绩管理系统\Student_Course_System\Student_Course_System\Form6.cs
文件 4777 2016-05-28 11:52 学生成绩管理系统\Student_Course_System\Student_Course_System\Form6.Designer.cs
文件 5817 2016-05-28 11:52 学生成绩管理系统\Student_Course_System\Student_Course_System\Form6.resx
文件 4469 2016-05-28 16:59 学生成绩管理系统\Student_Course_System\Student_Course_System\Form7.cs
文件 15727 2016-05-28 16:55 学生成绩管理系统\Student_Course_System\Student_Course_System\Form7.Designer.cs
文件 5817 2016-05-28 16:55 学生成绩管理系统\Student_Course_System\Student_Course_System\Form7.resx
文件 2741 2016-05-28 16:39 学生成绩管理系统\Student_Course_System\Student_Course_System\Form8.cs
文件 8902 2016-05-28 16:35 学生成绩管理系统\Student_Course_System\Student_Course_System\Form8.Designer.cs
文件 5817 2016-05-28 16:35 学生成绩管理系统\Student_Course_System\Student_Course_System\Form8.resx
............此处省略44个文件信息
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论