欢迎来到天天文库
浏览记录
ID:9284326
大小:18.85 KB
页数:9页
时间:2018-04-26
《asp数据库的连接方法源代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、asp数据库的连接方法源代码河南城建学院《--WEB技术与开发--》实验报告实验名称:__web实验十______专业班级:_0832152姓名:__张凯迪________学号:__083215217_________实验日期:2016年11月17日软件环境:Windowsxp,开发工具:VisualStudio2010/2008、SQL2005.一、实验目的1、回顾数据库的建立及Tsql语句查询;2、学会数据库与ASP.net的连接方法;3、的链接。熟练使用GridView控件及对其属性更改,实现编辑,删除等功能。二、实验过程及内容1、上机操作题(
2、1)查询名叫李志辉的学生的所有成绩源代码:useedusystemselectStudent_name,Course_name,Course_gradefromstudent,Scoreswherestudent.Student_id='082410201'(2)查询不及格课程的学生的学号、姓名、性别、及不及格的课程名源代码:useedusystemselectstudent.Student_id,Student_name,Student_sex,Course_namefromstudent,ScoreswhereCourse_gra
3、de<60(3)将学号为083410101学生的政治经济学成绩加5分源代码:useedusystemupdateScoressetCourse_grade=''+5whereStudent_id='083410101'andCourse_name='政治经济学'(4)计算所有学生的成绩总分,按降序排序并线是学生学号姓名源代码:selectStudent_idas学号,sum(Course_grade)as总成绩fromscoresgroupbyStudent_idorderbysum(Course
4、_grade)desc(5)计算并显示各门成绩的平均分及课程名源代码:SELECTCourse_name,AVG(Course_grade)AS'平均成绩'FROMscoreswhereStudent_id='082410201'groupbyCourse_name2、7-4使用GridView控件(1)创建数据库类db.csusingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Data;usin
5、gSystem.Data.SqlClient;///<summary>///DB的ì?摘a要°a说
6、ì明??///</summary>publicclassDB{publicDB(){}////TODO:在¨2此??处?
7、添?¨a加¨?构1造¨?函?¥数oy逻?辑-//publicstaticSqlConnectioncreateCon(){returnnewSqlConnection("Server=.;DataBase=School_DB;uid=sa;pwd=123456;");}}(2)添加web窗体,放置GridVi
8、ew控件,实现并显示数据绑定代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Data;usingSystem.Data.SqlClient;publicpartialclasskaidi:System.Web.UI.Page{SqlConnectionmyConn=DB.createCon();protectedv
9、oidPage_Load(objectsender,EventArgse){if(!Page.IsPostBack){BindGrid();}}protectedvoidBindGrid(){SqlDataAdapterdataAdapter2=newSqlDataAdapter("select*fromDepartment",myConn);DataSetsetS=newDataSet();dataAdapter2.Fill(setS,"AAA");this.GridView1.DataSource=setS.Tables["AAA"];this.
10、GridView1.DataBind();}(3)实现分页,代码如下protectedvoidGridVie
此文档下载收益归作者所有