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

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

ID:58691697

大小:241.00 KB

页数:34页

时间:2020-10-08

学生信息系统管理系统 系统源代码.doc_第1页
学生信息系统管理系统 系统源代码.doc_第2页
学生信息系统管理系统 系统源代码.doc_第3页
学生信息系统管理系统 系统源代码.doc_第4页
学生信息系统管理系统 系统源代码.doc_第5页
资源描述:

《学生信息系统管理系统 系统源代码.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、系统源代码一、登录界面代码usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;usingSystem.Data.SqlClien

2、t;publicpartialclasslogin:System.Web.UI.Page{protectedvoidtxtid_Click(objectsender,EventArgse){txtid.Text="";txtpassword.Text="";}protectedvoidButton1_Click(objectsender,EventArgse){stringstrconn=ConfigurationManager.AppSettings["connStr"];SqlConnectionconn=newSqlConnection(strco

3、nn);conn.Open();DataSetds=newDataSet();SqlDataAdapterda=newSqlDataAdapter("select*fromuserswhereuserid='"+txtid.Text+"'anduserpwd='"+txtpassword.Text+"'",conn);da.Fill(ds);if(ds.Tables[0].Rows.Count==0){Label3.Text="账号或密码错误,请重新输入!";}else{Session["userid"]=txtid.Text;Session["user

4、pwd"]=txtpassword.Text;Session["username"]=ds.Tables[0].Rows[0]["username"].ToString();Session["userpower"]=ds.Tables[0].Rows[0]["userpower"].ToString();if(Session["userpower"].ToString()=="0"){Response.Redirect("admin/index.aspx");}elseif(Session["userpower"].ToString()=="1"){Re

5、sponse.Redirect("student/index.aspx");}else{Label3.Text="对不起,权限验证失败";}}conn.Close();ds.Clear();}}二、添加课程页面代码usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usi

6、ngSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;usingSystem.Data.SqlClient;publicpartialclassaddcourse:System.Web.UI.Page{SqlCommandmycmd;SqlConnectionconn;protectedvoidPage_Load(objectsender,EventArgse){courseid.Attributes.Add("onblur","checkcourseid()");str

7、ingstrconn=ConfigurationManager.AppSettings["connStr"];conn=newSqlConnection(strconn);}protectedvoidButton1_Click(objectsender,EventArgse){if(courseid.Text.ToString()==""){Label7.Text="课程号不能为空";}else{stringsqlstr="";sqlstr="insertintocourse(courseid,coursename,coursetime,fen,type

8、,teacher)values('"+courseid.Text+"','"+c

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。