教务信息管理系统实验报告.doc

教务信息管理系统实验报告.doc

ID:56124668

大小:228.50 KB

页数:6页

时间:2020-06-20

教务信息管理系统实验报告.doc_第1页
教务信息管理系统实验报告.doc_第2页
教务信息管理系统实验报告.doc_第3页
教务信息管理系统实验报告.doc_第4页
教务信息管理系统实验报告.doc_第5页
资源描述:

《教务信息管理系统实验报告.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、.Net程序设计实验报告——ASP.NET班级:计10A-1姓名:黄溥学号:10101020114日期:2013年5月22日一、实验目的及要求1.熟悉Cookie,Response,Request,Session,Server,Application等asp.net对象。2.实现用户登录cookie的保存。3.实现用户登录信息的Session保存。4.实现用户上传文件(Server对象)。二、程序功能1.各个网页间的切换,打开,关闭及退出。2.用户的登陆判断。3.新建数据源,连接并打开数据库。4.三种数据操作的使用:GridView,DetailsView,Dro

2、pDownList。三、程序结构1.Default:登陆窗口。2.Default2:数据的操作窗口。四、源程序1.Default源程序:usingSystem;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.Web

3、Controls.WebParts;usingSystem.Xml.Linq;usingSystem.Data.SqlClient;publicpartialclassDefault:Page{protectedvoidButton1_Click(objectsender,EventArgse){SqlConnectionconn=newSqlConnection();conn.ConnectionString="DataSource=RenatoPuPC;InitialCatalog=JiaoWu;IntegratedSecurity=True";try{con

4、n.Open();stringno=TextBox1.Text;stringpassword=TextBox2.Text;stringstr_sql="selectcount(*)fromStudentswhereStudent_No=@Student_NoandStudent_Password=@Student_Password";SqlCommandcmd=newSqlCommand();cmd.Connection=conn;cmd.CommandText=str_sql;cmd.CommandType=CommandType.Text;cmd.Parame

5、ters.Add(newSqlParameter("@Student_No",no));//给sql语句内@Student_No参数赋值,传递学号nocmd.Parameters.Add(newSqlParameter("@Student_Password",password));//给sql语句内@Student_Name参数赋值,传递学号nameintcount=Convert.ToInt32(cmd.ExecuteScalar());if(count>0){Response.Redirect("Default2.aspx");}else{Response.W

6、rite("用户名密码输入错误");}}finally{conn.Close();}}}2.Default2源程序:usingSystem;usingSystem.Collections;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingSystem.Web.UI.WebControls;usingSys

7、tem.Web.UI.WebControls.WebParts;usingSystem.Xml.Linq;publicpartialclassDefault2:System.Web.UI.Page{protectedvoidGridView1_SelectedIndexChanged(objectsender,EventArgse){DetailsView1.ChangeMode(DetailsViewMode.Edit);}protectedvoidDropDownList1_SelectedIndexChanged(objectsender,EventArgs

8、e){Gr

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

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

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