2022年学生信息管理系统系统源代码.pdf
《2022年学生信息管理系统系统源代码.pdf》由会员分享,可在线阅读,更多相关《2022年学生信息管理系统系统源代码.pdf(34页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、学生信息管理系统系统源代码系统源代码一、登录界面代码using System; using System 、 Data; using System 、 Configuration; using System 、 Collections; using System 、 Web; using System 、 Web 、 Security; using System 、 Web 、UI; using System 、 Web 、UI 、 WebControls; using System 、 Web 、UI 、 WebControls 、 WebParts; using System 、 Web
2、、UI 、 HtmlControls; using System 、 Data 、 SqlClient; public partial class login : System、 Web、 UI 、 Page protected void txtid_Click(object sender, EventArgs e) txtid 、 Text = ; txtpassword 、 Text = ; protected void Button1_Click(object sender, EventArgs e) string strconn = ConfigurationManager、 AppS
3、ettingsconnStr; SqlConnection conn = new SqlConnection(strconn); conn 、 Open(); DataSet ds=new DataSet () ; SqlDataAdapter da = new SqlDataAdapter(select * from users where userid= + txtid 、 Text + and userpwd= + txtpassword、 Text + , conn); da、 Fill(ds); 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名
4、师归纳 - - - - - - - - - -第 1 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码if (ds 、Tables0 、 Rows 、Count=0) Label3 、 Text = 账号或密码错误,请重新输入!; else Session userid=txtid 、 Text ; Sessionuserpwd = txtpassword、 Text; Sessionusername = ds、 Tables0 、 Rows0username、 ToString(); Sessionuserpower = ds、Tables0 、 Rows
5、0userpower、 ToString(); if (Sessionuserpower、ToString () = 0) Response 、 Redirect(admin/index、aspx); else if (Sessionuserpower、 ToString() = 1) Response 、 Redirect(student/index、 aspx); else Label3 、 Text = 对不起 ,权限验证失败; conn 、 Close(); ds、 Clear (); 二、添加课程页面代码using System; using System 、 Data; 精品资料
6、- - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 2 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码using System 、 Configuration; using System 、 Collections; using System 、 Web; using System 、 Web 、 Security; using System 、 Web 、UI; using System 、 Web 、UI 、 WebControls; using System 、 Web 、U
7、I 、 WebControls 、 WebParts; using System 、 Web 、UI 、 HtmlControls; using System 、 Data 、 SqlClient; public partial class addcourse : System、 Web 、 UI 、 Page SqlCommand mycmd; SqlConnection conn; protected void Page_Load(object sender, EventArgs e) courseid 、 Attributes 、 Add(onblur, checkcourseid();
8、 string strconn = ConfigurationManager、 AppSettingsconnStr; conn = new SqlConnection(strconn); protected void Button1_Click(object sender, EventArgs e) if (courseid、 Text 、 ToString() = ) Label7 、Text = 课程号不能为空; else string sqlstr = ; sqlstr = insert into course(courseid,coursename,coursetime,fen,ty
9、pe,teacher)values( + courseid、Text + , + 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 3 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码coursename 、 Text + , + coursetime、 Text + , + fen、 Text + , + type、 Text + , + teacher 、 Text + ); conn、 Open(); mycmd = new SqlCommand(sqlstr, c
10、onn); mycmd 、 Dispose(); try mycmd 、 ExecuteNonQuery(); Response 、 Write(javascript:alert(添加成功!);); catch (SqlException) Response 、 Write(javascript:alert(添加失败!);); finally conn 、 Close(); sqlstr = ; protected void Button2_Click(object sender, EventArgs e) courseid 、 Text = ; coursename 、Text = ; co
11、ursetime 、 Text = ; fen 、 Text = ; type、 Text = ; protected void Button3_Click(object sender, EventArgs e) 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 4 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码 Response、 Redirect(course、 aspx); 三、添加成绩程序代码using System; using System 、 Data;
12、using System 、 Configuration; using System 、 Collections; using System 、 Web; using System 、 Web 、 Security; using System 、 Web 、UI; using System 、 Web 、UI 、 WebControls; using System 、 Web 、UI 、 WebControls 、 WebParts; using System 、 Web 、UI 、 HtmlControls; using System 、 Data 、 SqlClient; public p
13、artial class addscore : System、 Web 、 UI 、 Page SqlCommand mycmd; SqlConnection conn; protected void Page_Load(object sender, EventArgs e) string strconn = ConfigurationManager、 AppSettingsconnStr; conn = new SqlConnection(strconn); protected void Button1_Click(object sender, EventArgs e) if (userid
14、 、 SelectedValue 、 ToString ()= ) Label11 、 Text = 学号不能为空; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 5 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码 else string sqlstr = ; sqlstr = insert into score(userid,username,courseid,coursename,score,year)values( + userid、 SelectedValu
15、e + , + username、 Text + , + txtcourseid、 SelectedValue + , + coursename、 Text + , + score、 Text + , + txtyear、 SelectedValue + ); conn、 Open(); mycmd = new SqlCommand(sqlstr, conn); mycmd 、 Dispose(); try mycmd 、 ExecuteNonQuery(); Response 、 Write(javascript:alert(添加成功!);); catch (SqlException) Re
16、sponse 、 Write(javascript:alert(添加失败!);); finally conn 、 Close(); sqlstr = ; protected void Button2_Click(object sender, EventArgs e) username 、 Text = ; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 6 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码coursename 、Text = ; score、 Text
17、= ; txtyear 、 Text = ; protected void Button3_Click(object sender, EventArgs e) Response、 Redirect(score、 aspx); protected void userid_SelectedIndexChanged(object sender, EventArgs e) string sqlstr = ; sqlstr = select username from students where userid= + userid、 SelectedValue + ; conn 、 Open(); my
18、cmd = new SqlCommand(sqlstr, conn); mycmd 、 Dispose(); SqlDataReader da; da = mycmd 、 ExecuteReader(); while (da 、 Read() username 、Text = dausername、 ToString(); protected void txtcourseid_SelectedIndexChanged(object sender, EventArgs e) string sqlstr = ; sqlstr = select coursename from course wher
19、e courseid= + txtcourseid、SelectedValue + ; conn 、 Open(); mycmd = new SqlCommand(sqlstr, conn); 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 7 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码mycmd 、 Dispose(); SqlDataReader da; da = mycmd 、 ExecuteReader(); while (da 、 Read() cour
20、sename 、 Text = dacoursename、 ToString(); 四、添加学生程序代码using System; using System 、 IO; using System 、 Text; using System 、 Data; using System 、 Configuration; using System 、 Collections; using System 、 Web; using System 、 Web 、 Security; using System 、 Web 、UI; using System 、 Web 、UI 、 WebControls; us
21、ing System 、 Web 、UI 、 WebControls 、 WebParts; using System 、 Web 、UI 、 HtmlControls; using System 、 Data 、 SqlClient; public partial class addstudent : System、 Web 、 UI 、 Page SqlCommand mycmd; protected void Page_Load(object sender, EventArgs e) userid 、 Attributes 、 Add(onblur, checkuserid(); str
22、ing strconn = ConfigurationManager、 AppSettingsconnStr; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 8 页,共 34 页 - - - - - - - - - - 学生信息管理系统系统源代码SqlConnection conn = new SqlConnection(strconn); protected void Button1_Click(object sender, EventArgs e) if (userid 、 Text 、 ToStr
23、ing() = ) return; string strconn = ConfigurationManager、 AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn); string sqlstr = ; string sql = ; sqlstr = insert into students(userid,username,sex,minzu,birthday,class,comefrom,beizhu,xuey,zhuany,tel,idc,zhengzmm,zhiw,huoj,weij)values( +
24、userid、 Text + , + txtusername、Text + , + txtsex、SelectedItem 、 Value + , + txtminzu、 Text + , + txtbirthday、 Text + , + txtclass、Text + , + txtcomefrom、 Text + , + txtbeizhu、 Text + , + txtxuey、 SelectedValue + , + txtzhuany、 SelectedValue + , + txttel、 Text + , + txtidc、 Text + , + txtzzmm 、 Selec
25、tedValue + , + txtzhiw、 Text + , + txthuoj、 Text + , + txtweij、Text + ); conn 、 Open(); mycmd = new SqlCommand(sqlstr, conn); mycmd 、 Dispose(); string name = this、获取上传文件的名称string type = name、 Substring(name、 LastIndexOf() + 1);/获取上传文件的后缀string ipath = Server、 MapPath(images/) + DateTime、 Now 、ToStr
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022 学生 信息管理 系统 源代码
限制150内