学生信息管理系统系统源代码.doc

上传人:壹****1 文档编号:563147808 上传时间:2023-05-10 格式:DOC 页数:37 大小:105.50KB
返回 下载 相关 举报
学生信息管理系统系统源代码.doc_第1页
第1页 / 共37页
学生信息管理系统系统源代码.doc_第2页
第2页 / 共37页
学生信息管理系统系统源代码.doc_第3页
第3页 / 共37页
学生信息管理系统系统源代码.doc_第4页
第4页 / 共37页
学生信息管理系统系统源代码.doc_第5页
第5页 / 共37页
点击查看更多>>
资源描述

《学生信息管理系统系统源代码.doc》由会员分享,可在线阅读,更多相关《学生信息管理系统系统源代码.doc(37页珍藏版)》请在金锄头文库上搜索。

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.UI.HtmlControls;using System.Data.SqlClient;pub

2、lic 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.AppSettingsconnStr; SqlConnection conn = new SqlConnection(strconn);

3、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); if (ds.Tables0.Rows.Count=0) Label3 .Text =账号或密码错误,请重新输入!; else Session userid=txtid .Text ; Sessionuserpwd = txtpa

4、ssword.Text; Sessionusername = ds.Tables0.Rows0username.ToString(); Sessionuserpower = ds.Tables0.Rows0userpower.ToString(); if (Sessionuserpower.ToString () = 0) Response.Redirect(admin/index.aspx); else if (Sessionuserpower.ToString() = 1) Response.Redirect(student/index.aspx); else Label3.Text =

5、对不起,权限验证失败; conn.Close(); ds.Clear (); 二、添加课程页面代码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.UI.HtmlControls

6、;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(); string strconn = ConfigurationManager.AppSettingsconnStr; conn = new SqlConnect

7、ion(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,type,teacher)values( + courseid.Text + , + coursename.Text + , + coursetime.Text + , +

8、fen.Text + , + type.Text + , + teacher.Text + ); conn.Open(); mycmd = new SqlCommand(sqlstr, conn); mycmd.Dispose(); try mycmd.ExecuteNonQuery(); Response.Write(javascript:alert(添加成功!);); catch (SqlException) Response.Write(javascript:alert(添加失败!);); finally conn.Close(); sqlstr = ; protected void B

9、utton2_Click(object sender, EventArgs e) courseid.Text = ; coursename.Text = ; coursetime.Text = ; fen.Text = ; type.Text = ; protected void Button3_Click(object sender, EventArgs e) Response.Redirect(course.aspx); 三、添加成绩程序代码using System;using System.Data;using System.Configuration;using System.Coll

10、ections;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 partial class addscore : System.Web.UI.Page SqlCommand mycmd; SqlConnection conn; protec

11、ted 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.SelectedValue .ToString ()= ) Label11.Text = 学号不能为空; else string sqlstr = ; sqlstr = insert into score(userid,username,courseid,coursename,score,year)values( + userid.SelectedValue + , + username.Text + , + txtcourseid.SelectedValue + , + coursename.Text + , + score.Text + , + txtyear.SelectedValue + ); conn.Open(); mycmd = new Sql

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 办公文档 > 求职简历 > 职业规划

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号