版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
本章要点了解数据绑定控件的作用掌握GridView控件的使用方法掌握DataList控件的使用方法掌握Repeater控件的使用方法掌握ListView控件的使用方法掌握Chart控件的使用方法17.1数据绑定概述ASP.NET提供了丰富的控件用于显示数据,这类显示数据的控件称为数据绑定控件。数据绑定控件大致可分为两类:一是前面所讲的选项类数据列表控件,如ListBox、DropDownList控件等,另一类是用于数据展示的数据显示控件,其功能是通过将数据绑定到这些控件并以一定的格式显示数据,如GridView、DataList、Repeater、ListView、Chart等控件。7.1.1绑定方式1.使用数据源控件方式绑定<asp:DropDownListID="DropDownList1"runat="server"DataSourceID="SqlDataSource1"DataTextField="姓名"DataValueField="学号"Height="16px"Width="102px"></asp:DropDownList><asp:SqlDataSourceID="SqlDataSource1“runat="server"ConnectionString="<%$ConnectionStrings:stuConnectionString%>"ProviderName="System.Data.SqlClient"SelectCommand="select*from学生"></asp:SqlDataSource>7.1.1绑定方式2.编写程序绑定前台页面代码如下:<asp:DropDownListID="DropDownList1"runat="server"></asp:DropDownList>后台代码如下:stringconnstr=WebConfigurationManager.ConnectionStrings["stuConnectionString"].ToString();//从web.config中读取连接字符串SqlConnectionconn=newSqlConnection(connstr);//创建连接对象SqlDataAdaptersda=newSqlDataAdapter("select*from学生",conn);//创建SqlDataAdapter对象DataSetds=newDataSet();//创建数据集sda.Fill(ds);DropDownList1.DataSource=ds.Tables[0];//设置数据源DropDownList1.DataTextField="姓名";//在控件中显示的列DropDownList1.DataValueField="学号";//控件的选择值列DropDownList1.DataBind();7.2GridView控件GridView是ASP.NET功能最强大最复杂的控件,可以格式化并显示数据库的记录,可以对记录进行排序、分页。是ASP.NET中使用最多的数据绑定控件。Gridview控件示例7.2.1GridView简介属性说明AutoGenerateColumns是否为数据源中的每个字段自动创建绑定字段BackImageUrl控件背景图像的URLCaption标题行中呈现的文本GridLines网络线样式Columns列字段的集合Rows数据行的集合ShowFooter是否在控件中显示脚注行ShowHeader是否在控件中显示标题行GridView控件的常用属性7.2.1GridView简介属性说明RowStyle设置数据行的样式AlternatingRowStyle设置交替数据行的样式EditRowStyle设置正在编辑行的样式SelectRowStyle设置选中行的样式PagerStyle设置页导航行的样式HeaderStyle设置标题行的样式FooterStyle设置脚注行的样式GridView常用的样式属性7.2.2GridView绑定数据源对GridView进行数据绑定有两种方法:1.通过编写代码设置GridView控件的DataSource属性,然后调用DataBind()方法。2.通过可视化界面使用控件DataSource连接数据源,再把GridView控件的DataSourceID属性设置为DataSource控件的ID。7.2.2GridView绑定数据源1.通过编写代码进行绑定【例7-4】<htmlxmlns="/1999/xhtml"><headrunat="server"><title></title></head><body><formid="form1"runat="server"><asp:GridViewID="GridView1"runat="server"DataKeyNames="学号"Caption="学生信息表"></asp:GridView></form></body></html>protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){stringconnstr=WebConfigurationManager.ConnectionStrings["stuConnectionString"].ToString();//从web.config中读取连接字符串
SqlConnectionconn=newSqlConnection(connstr);//创建连接对象
SqlDataAdaptersda=newSqlDataAdapter("select*from学生",conn);//创建SqlDataAdapter对象,同时定义查询命令,设置关联的连接对象
DataSetds=newDataSet();//创建数据集
sda.Fill(ds);//填充数据集
GridView1.DataSource=ds.Tables[0];//将数据集的第1个DataTable作为GridView控件的数据源
GridView1.DataBind();//将数据源绑定到GridView控件
}}后台程序代码:7.2.2GridView绑定数据源例7-4添加样式表后的运行结果7.2.2GridView绑定数据源2.使用控件进行绑定将数据表直接拖动到页面上,会自动出现GridView控件和SqlDataSource控件7.2.2GridView绑定数据源使用控件绑定方式运行结果7.2.3在GridView控件中创建列列类型含义描述BoundField绑定列GridView的默认列,用于显示记录的字段HyperLinkField超链接作为链接显示记录的字段ButtonField按钮显示按钮控件CommandField编辑显示编辑命令(EditUpdateCancel)TemplateField模板使用模板显示记录GridView控件支持的列类型在默认情况下,GridView简单地显示来自数据源的所有列,实际上是数据源中的所有列自动地使用户ItemTemplate模板来显示,不需要显式声明模板。当然也可以通过设置AutoGenerateColumns的属性为False来自定义数据的显示格式,可以单独地创建每个列和对列的显示格式进行更多的控制。7.2.3在GridView控件中创建列这些列类型是作为GridView的子控件,其声明代码必须在GridView控件内部,并且在标识符号<Columns>和</Columns>之间,例如:<asp:GridViewID="GridView1"runat="server"AutoGenerateColumns="False"DataKeyNames="学号"DataSourceID="SqlDataSource1"><Columns><asp:BoundFieldDataField="学号"HeaderText="学号"/><asp:BoundFieldDataField="姓名"HeaderText="姓名"/></Columns></asp:GridView>7.2.3在GridView控件中创建列1.添加BoundField列属性描述DataField由BoundField显示的来自数据源的字段DataFormatString格式化DataField中显示的字符串FooterText显示在BoundField列底部的文本,即列的脚注HeaderImageUrl在BoundField列顶部显示的图片HeaderText显示在BoundField列顶部的文本,即列标题BoundField的属性7.2.3在GridView控件中创建列【例7-5】在GridView中显示学生表的数据,只显示学号、姓名、出生日期,其中出生日期以“xxxx年xx月xx日”格式显示。要求在GridView中显示脚注行。
<asp:GridViewID="GridView1"runat="server"AutoGenerateColumns="False"DataKeyNames="学号"CssClass="tableList"ShowFooter="True"><HeaderStyleCssClass="thTitle"/><FooterStyleCssClass="thTitle"/><Columns><asp:BoundFieldDataField="学号"HeaderText="学号"FooterText="学号"/><asp:BoundFieldDataField="姓名"HeaderText="姓名"FooterText="姓名"/><asp:BoundFieldDataField="出生日期"HeaderText="出生日期"DataFormatString="{0:D}"FooterText="出生日期"/></Columns></asp:GridView>7.2.3在GridView控件中创建列例7-5运行结果7.2.3在GridView控件中创建列2.添加HyperLinkField列HyperLinkField在GridView控件中显示一个超链接列,用于跳转到其它页面,一般情况下带有参数。属性描述DataNavigateUrlFields来自GridView控件的数据源的字段,是DataNavigateUrlFormatString中的参数DataNavigateUrlFormatString格式化DataNavigateUrlFields值的字符串,是一个带有参数的URL地址DataTextField来自GridView控件的数据源的字段,用于超链接标签上显示的文本DataTextFormatString格式化DataTextField值的字符串NavigateUrl超链接UrlTarget超链接指向的窗口或框架FooterText显示在HyperLinkField列底部的文本,即列的脚注HeaderImageUrl在HyperLinkField列顶部显示的图片HeaderText显示在HyperLinkField列顶部的文本,即列标题Text作为超链接标签显示的文本,这里是一个固定值7.2.3在GridView控件中创建列【例7-6】数据库中有一个订单表和订单细节表,表结构如下:订单(订单编号、下单时间、客户姓名、联系电话、总价)订单详情(编号,商品名称、商标、型号、价格、单位、数量,订单编号)设计一个页面显示订单列表,按下单时间降序排列,在列表中设计一个“查看详情”的超链接列,通过它可以查看订单的详情。<asp:GridViewID="GridView1"runat="server"AutoGenerateColumns="False"DataKeyNames="cOrderno"/><Columns><asp:BoundFieldDataField="cOrderno"HeaderText="订单编号"/><asp:BoundFieldDataField="dOrderTime"HeaderText="下单时间"/><asp:BoundFieldDataField="cCustomername"HeaderText="客户姓名"/><asp:BoundFieldDataField="cTel"HeaderText="联系电话"/><asp:BoundFieldDataField="mTotal"HeaderText="总价"/>
<asp:HyperLinkFieldDataNavigateUrlFields="cOrderNo"DataNavigateUrlFormatString="orderdetail.aspx?orderno={0}"Text="查看详情"/></Columns></asp:GridView>7.2.3在GridView控件中创建列protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){stringconnstr=WebConfigurationManager.ConnectionStrings["stuConnectionString"].ToString();//从web.config中读取连接字符串
SqlConnectionconn=newSqlConnection(connstr);//创建连接对象
SqlDataAdaptersda=newSqlDataAdapter(“selecttop1000*fromordersorderbydordertimedesc”,conn);//创建SqlDataAdapter对象,定单按下单时间排序的Select语句,最多返回1000行数据
DataSetds=newDataSet();//创建数据集
sda.Fill(ds);//填充数据集
GridView1.DataSource=ds.Tables[0];GridView1.DataBind();}}例7-6后台代码:7.2.3在GridView控件中创建列例7-6运行结果7.2.3在GridView控件中创建列3.添加ButtonField列【例7-7】数据库中有一个订单表和订单细节表,设计一个页面显示订单列表,按时间降序排列,在列表中设计一个“查看详情”的ButtonField列,通过它可以查看订单的详情。在例7-6的基础上进行修改,在订单列表页上添加一个ButtonField列,CommandName属性设置为“showdetail”,ButtonType属性设置为Image,ImageUrl设置图片路径。在GridView中添加RowCommand事件函数。7.2.3在GridView控件中创建列RowCommand事件函数代码如下:protectedvoidGridView1_RowCommand(objectsender,GridViewCommandEventArgse){stringorderno=GridView1.DataKeys[Convert.ToInt32(e.CommandArgument)].Value.ToString().Trim();//获取行的DataKeys值,由GridView的DataKeyNames属性设置。if(e.CommandName=="showdetail")//如果是查看详情按钮{Response.Redirect("orderdetail.aspx?orderno="+orderno);//跳转到查看详情页,同时将订单编号作为参数用Get方式传递}}7.2.3在GridView控件中创建列例7-7运行结果7.2.3在GridView控件中创建列4.添加CommandField列CommandField用于显示GridView内置的按钮,包括编辑、更新、删除或选择操作。显示按钮后,即可通过该按钮完成相应的操作。属性描述ButtonType设置按钮类型。取值为Button、Image或LinkShowEditButton设置是否显示编辑按钮ShowDeleteButton设置是否显示删除扫钮ShowSelectButton设置是否显示选择按钮CommandField控件属性7.2.3在GridView控件中创建列【例7-8】自动添加CommandField列。将服务器资源管器中的学生数据表拖动到页面中,从弹出的窗口中将“启用编辑”和“启用删除”选中,调整列的顺序即可。例7-8运行结果7.2.3在GridView控件中创建列5.添加TemplateField列在TemplateField列中,可以包括大多数ASP.NET的常用控件和HTML标记,如:DropDownList、CheckBox、RadioButton、TextBox等,当在GridView中需要使用这些常用控件时,必须使用TemplateField。TemplateField列声明的典型格式如下:<asp:TemplateField属性=”属性值”><ItemTemplate><center><asp:TextBoxID=”myname”Text=’<%#DataBinder.Eval(Container.DataItem,”stuname”)%>’Runat=”Server”></asp:TextBox></center></ItemTemplate></asp:TemplateField>7.2.3在GridView控件中创建列数据源例的绑定形式:Text='<%#DataBinder.Eval(Container.DataItem,"stuname")%>'Text=’<%#Eval(“stuname”)%>’这种形式是单向(只读)绑定,它是DataBinder.Eval的简化版,但只能在模板中使用。Text=’<%#Bind(“stuname”)%>’这种形式是双向(可更新)绑定。7.2.3在GridView控件中创建列【例7-10】将学生信息显示在GridView中,并添加一列CheckBox用于行选择,用TextBox显示姓名和联系电话,用RadioButtonList显示性别。在界面上添加一个删除按钮和更新按钮,使用户可以删除选中的行和更新GridView中的数据。7.2.3在GridView控件中创建列GridView添加4个TemplateField列和1个BoundField列,BoundField列用于显示学号,4个TemplateField用于显示CheckBox选择按钮、姓名、性别、联系电话。点击GridView右上角的按钮,从弹出的智能菜单中选择“编辑模板”,在模板中添加CheckBox、RadioButtonList、TextBox控件7.2.3在GridView控件中创建列<asp:GridViewID="GridView1"runat="server"AutoGenerateColumns="False"DataKeyNames="学号"EmptyDataText="没有可显示的数据记录。"><Columns><asp:TemplateFieldHeaderText="选择"><ItemTemplate>
<asp:CheckBoxID="CheckBox1"runat="server"AutoPostBack="False"/></ItemTemplate></asp:TemplateField><asp:BoundFieldDataField="学号"HeaderText="学号"ReadOnly="True"/><asp:TemplateFieldHeaderText="姓名"><ItemTemplate>
<asp:TextBoxID="T_StuName"runat="server"Text='<%#Eval("姓名")%>'></asp:TextBox></ItemTemplate></asp:TemplateField><asp:TemplateFieldHeaderText="性别"><ItemTemplate>
<asp:RadioButtonListID="RBL_Sex"runat="server"RepeatDirection="Horizontal"SelectedValue='<%#Bind("性别")%>'><asp:ListItem>男</asp:ListItem><asp:ListItem>女</asp:ListItem></asp:RadioButtonList></ItemTemplate></asp:TemplateField><asp:TemplateFieldHeaderText="联系电话"><ItemTemplate>
<asp:TextBoxID="T_Tel"runat="server"Text='<%#DataBinder.Eval(Container.DataItem,"联系电话")%>'></asp:TextBox></ItemTemplate></asp:TemplateField></Columns></asp:GridView>7.2.3在GridView控件中创建列例7-10后台代码要点
foreach(GridViewRowGRinthis.GridView1.Rows){CheckBoxCB=(CheckBox)GR.FindControl(“CheckBox1”);//在GridView的行中寻找名称为“CheckBox1”的控件,并转换为CheckBox。TextBoxName=(TextBox)GR.FindControl("T_StuName");
//在GridView的行中寻找名称为T_StuName的控件,并转换为TextBoxRadioButtonListSex=(RadioButtonList)GR.FindControl("RBL_Sex");//在GridView的行中寻找名称为RBL_Sex的控件,并转换为RadioButtonListGridView1.DataKeys[GR.RowIndex].Value.ToString();//取出GridView中GR.RowIndex行的DataKey值}7.2.3在GridView控件中创建列例7-10运行结果7.2.4GridView分页在GridView控件中实现分页操作,其数据源必须使用DataSet,而不能使用DataReader。GridView控件内置了对数据源记录进行分页的功能。要实现分页功能需要进行如下操作。
(1)将GridView的允许分页属性AllowPaging置为True。(2)添加GridView的PageIndexChanged事件处理函数。
GridView根据以下三个方面决定在控件中显示哪些数据:(1)
GridView的PageSize属性:每一页的数据条数。(2)
GridView的PageIndex属性:当前要显示页的序号,从0开始。(3)数据源的记录总条数。
7.2.4GridView分页【例7-11】使用GridView控件分页功能进行分页<asp:GridViewID="GridView1"runat="server"AllowPaging="True"
AutoGenerateColumns="False"DataKeyNames="学号"EmptyDataText="没有可显示的数据记录。"PageSize="5"
onpageindexchanging="GridView1_PageIndexChanging"><Columns><asp:BoundFieldDataField="学号"HeaderText="学号"/><asp:BoundFieldDataField="姓名"HeaderText="姓名"/><asp:BoundFieldDataField="性别"HeaderText="性别"/><asp:BoundFieldDataField="出生日期"HeaderText="出生日期"/><asp:BoundFieldDataField="联系电话"HeaderText="联系电话"/><asp:BoundFieldDataField="班级"HeaderText="班级"/></Columns></asp:GridView>7.2.4GridView分页7-11后台代码:protectedvoidbinddata(){…//访问数据库
DataSetds=newDataSet();//创建数据集
sda.Fill(ds);GridView1.DataSource=ds.Tables[0];GridView1.DataBind();}protectedvoidGridView1_PageIndexChanging(objectsender,GridViewPageEventArgse){
GridView1.PageIndex=e.NewPageIndex;//设置在GridView中显示的页号
binddata();//重新绑定数据源
}7.2.4GridView分页例子7-11运行效果7.2.4GridView分页【例7-13】分页读取数据GridView自带的分页功能进行分页,这种方式编程简单,不用考虑哪一页是哪些数据,只需要给出数据源、每页数据条数和要显示的页序号即可。但是,这种分页方式也存着一个严重的问题,数据源需要给出所有的数据记录,使得大量数据被加载到内存,严重影响服务器性能。因此,在数据源存在大量数据的情况下,不要把数据全部读入内存,不能使用GridView自带的分页功能,应该分页读入数据,每次从数据库读取一页数据7.2.4GridView分页先创建一个储存过程,分页读取学生表的数据,代码如下:createprocedure[dbo].[GetStuByPage]@pagesizeint,@pageindexintasbegindeclare@indextabletable(idintidentity(1,1),stunonchar(10))--定义表declare@PageLowerBoundint--定义此页的底码declare@PageUpperBoundint--定义此页的顶码declare@countint--数据条数set@PageLowerBound=(@pageindex-1)*@pagesize//计算底码set@PageUpperBound=@PageLowerBound+@pagesize//计算顶码insertinto@indextable(stuno)select学号from学生orderby学号//将数据表的主键放入内存表select*from学生a,@indextablebwherea.学号=b.stunoandb.id>@PageLowerBoundandb.id<=@PageUpperBoundorderbyb.id//查询由pageindex参数给出的页的数据select@count=count(*)from学生//查询记录总数return@count//返回记录总数end7.2.4GridView分页把GridView控件添加到页面上,设置列,添加分页标签7.2.4GridView分页<asp:GridViewID="GridView1"runat="server"AllowPaging="False"AutoGenerateColumns="False"DataKeyNames="学号"EmptyDataText="没有可显示的数据记录。"><Columns>…</Columns></asp:GridView><asp:LinkButtonID="btnFirst"runat="server"CausesValidation="False"CommandArgument="first"OnClick="PagerButtonClick">首页</asp:LinkButton><asp:LinkButtonID="btnPrev"runat="server"CausesValidation="False"CommandArgument="prev"OnClick="PagerButtonClick">上一页</asp:LinkButton><asp:LinkButtonID="btnNext"runat="server"CommandArgument="next"OnClick="PagerButtonClick">下一页</asp:LinkButton><asp:LinkButtonID="btnLast"runat="server"CausesValidation="False"CommandArgument="last"OnClick="PagerButtonClick">尾页</asp:LinkButton>前台页面代码:7.2.4GridView分页
privatevoidbinddata(intpagesize,intpageindex){stringconnstr=WebConfigurationManager.ConnectionStrings["stuConnectionString"].ToString();//从web.config中读取连接字符串
SqlConnectionconn=newSqlConnection(connstr);//创建连接对象
//按页读取数据
SqlCommandcmd=newSqlCommand();//创建命令对象
cmd.Connection=conn;//给命令对象设置连接对象
cmd.CommandText="GetStuByPage";//存储过程名称
cmd.CommandType=CommandType.StoredProcedure;//表示CommandText是存储过程
cmd.Parameters.Add(newSqlParameter("@pagesize",pagesize));//给存储过程添加参数,每页大小
cmd.Parameters.Add(newSqlParameter("@pageindex",pageindex));//给存储过程添加参数,当前页码,从1开始
SqlParameterreturnvalue=newSqlParameter();//创建一个参数
returnvalue.Direction=ParameterDirection.ReturnValue;//参数类型是返回值
returnvalue.DbType=DbType.Int32;//参数的数据类型是Int32cmd.Parameters.Add(returnvalue);//将参数加入存储过程7.2.4GridView分页SqlDataAdaptersda=newSqlDataAdapter();//创建数据适配器
sda.SelectCommand=cmd;//给数据适配器关联命令对象
DataSetds=newDataSet();//创建数据集
sda.Fill(ds);//填充数据集
intnum=Convert.ToInt32(returnvalue.Value);//获取存储过程的return值
doublea=num/(pagesize*1.0);//计算页数
intpages=(int)Math.Ceiling(a);//页数取整
GridView1.DataSource=ds.Tables[0].DefaultView;//设置数据源
GridView1.DataBind();//绑定数据
//设置分页标签属性
LblCurrentIndex.Text="第"+pageindex.ToString()+"页";LblPageCount.Text="共"+pages.ToString()+"页";LblRecordCount.Text="总共"+num.ToString()+"条";//计算生成分页页码,分别为:"首页""上一页""下一页""尾页"btnFirst.CommandName="1";btnPrev.CommandName=(pageindex==1?"1":(pageindex-1).ToString());btnNext.CommandName=(pageindex==pages?pages.ToString():(pageindex+1).ToString());btnLast.CommandName=pages.ToString();}7.2.4GridView分页
protectedvoidPagerButtonClick(objectsender,EventArgse){intindex=Convert.ToInt32(((LinkButton)sender).CommandName);
binddata(2,index);//绑定数据,每页2行,显示index指示的页。
}7.2.4GridView分页分页运行结果7.2.5GridView排序在GridView控件中,可以通过点击列标题对数据进行排序,可以允许所有列的排序,或只按特定列排序。要实现排序,需要把AllowSorting属性设置为True,并在要排序的列上设置SortExpression属性,然后添加Sorting事件处理函数。7.2.5GridView排序【例7-14】使用GridView控件显示学生的信息,可以按学号、出生日期、班级进行排序。<asp:GridViewID="GridView1"runat="server"AutoGenerateColumns="False"DataKeyNames="学号"EmptyDataText="没有可显示的数据记录。"AllowSorting="True"
onsorting="GridView1_Sorting"><Columns><asp:BoundFieldDataField="学号"HeaderText="学号"ReadOnly="True"SortExpression="学号"/>……<asp:BoundFieldDataField="班级"HeaderText="班级"SortExpression="班级"/></Columns></asp:GridView>7.2.5GridView排序protectedvoidGridView1_Sorting(objectsender,GridViewSortEventArgse){if(ViewState["sortDirection"]!=null)//排序方向,不能用一个普通的成员变量记录,因为普通变量的值当页面回传后将被置0。
{if(ViewState["sortDirection"].ToString().Trim()=="asc")//如果为升序
{ViewState["sortDirection"]="desc";//降序
}else{ViewState["sortDirection"]="asc";//升序
}}else{ViewState["sortDirection"]="asc";//第1次排序为升序
}
7.2.5GridView排序stringconnstr=WebConfigurationManager.ConnectionStrings["stuConnectionString"].ToString();//从web.config中读取连接字符串
SqlConnectionconn=newSqlConnection(connstr);//创建连接对象
SqlDataAdaptersda=newSqlDataAdapter("select*from学生orderby"+e.SortExpression+""+ViewState["sortDirection"].ToString(),conn);//创建SqlDataAdapter对象,查询语句中对指定列指定排序方向进行排序
DataSetds=newDataSet();//创建数据集
sda.Fill(ds);GridView1.DataSource=ds.Tables[0];GridView1.DataBind();}代码中通过ViewState记录排序方向,当第一次点击列标题时可能是升序,当第二次点击同一个列标题时需要降序,再次点击又需要升序。点击了哪一个列标题通过事件函数的参数e.SortExpression获取。排序是通过SQL语句的orderby子句实现的。7.3Repeater控件Repeater控件是一个数据显示控件,通常重复某些HTML标记来显示数据库的记录。它需要绑定数据源才能显示数据。【例7-15】使用Repeater控件以表格形式显示学生表的学号和姓名。7.3Repeater控件<asp:RepeaterID="Repeater1"runat="server"><HeaderTemplate><tableborder="1"><tr><th>学号</th><th>姓名</th><th>操作</th></tr></HeaderTemplate><ItemTemplate><tr><td><%#DataBinder.Eval(Container.DataItem,"学号")%></td><td><%#DataBinder.Eval(Container.DataItem,"姓名")%></td><td><asp:ButtonID="Button1"runat="server"Text="详情"CommandName='<%#DataBinder.Eval(Container.DataItem,"学号")%>'OnClick="Button1_Click"/></td></tr></ItemTemplate>
7.3Repeater控件<AlternatingItemTemplate><trbgcolor="#77DDDD"><td><%#DataBinder.Eval(Container.DataItem,"学号")%></td><td><%#DataBinder.Eval(Container.DataItem,"姓名")%></td><td><asp:ButtonID="Button1"runat="server"Text="详情"CommandName='<%#DataBinder.Eval(Container.DataItem,"学号")%>'OnClick="Button1_Click"/></td></tr></AlternatingItemTemplate><FooterTemplate></table></FooterTemplate></asp:Repeater>7.3Repeater控件例7-15运行结果7.4DataList控件DataList控件可以在表格中或者自定义模板中显示绑定的数据,与GridView有些类似,但显示风格是不同的,可以在一行中重复显示多条记录的数据。【例7-16】已知图书表Book的数据如图7-27所示,使用DataList显示每本图书的图书名称、价格、图片。图中picpath列为图片的存储路径,使用绝对路径,图片存储在网站的bookimg目录下7.4DataList控件<asp:DataListID="DataList1"runat="server"DataKeyField="bookid"ForeColor="#333333"RepeatColumns="4"RepeatDirection="Horizontal"Width="100%"><ItemTemplate><div><p><ahref="/showbook.aspx?bookid=<%#Eval("bookid")%>"><imgsrc="<%#DataBinder.Eval(Container.DataItem,"picpath").ToString()%>"width="80"height="100"/></a></p><p><b><%#DataBinder.Eval(Container.DataItem,"bookname")%></b></p><p><span>价格:¥<%#DataBinder.Eval(Container.DataItem,"price","{0:f}").ToString()%></span></p></div></ItemTemplate></asp:DataList>7.4DataList控件
protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){stringconnstr=WebConfigurationManager.ConnectionStrings["stuConnectionString"].ToString();//从web.config中读取连接字符串
SqlConnectionconn=newSqlConnection(connstr);//创建连接对象
SqlDataAdaptersda=newSqlDataAdapter("select*frombook",conn);//创建SqlDataAdapter对象
DataSetds=newDataSet();//创建数据集
sda.Fill(ds);DataList1.DataSource=ds.Tables[0];//设置DataList控件的数据源
DataList1.DataBind();//绑定数据源
}}
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 兰州理工大学《国际结算》2023-2024学年第一学期期末试卷
- 预算执行情况评估计划
- 制定安全报告定期发布计划
- 兰州交通大学《PHP程序设计》2023-2024学年第一学期期末试卷
- 兰州工业学院《免疫与病原生物学实验Ⅰ》2023-2024学年第一学期期末试卷
- 财务绩效考核体系计划
- 行业主管与企业使命的契合度计划
- 家庭财务与个人职业发展的平衡计划
- 资金托管合同模板三篇
- 昆山登云科技职业学院《汽车故障诊断与维修工程》2023-2024学年第一学期期末试卷
- 红色澳门回归纪念日PPT模板课件
- 2022年扶贫评估村级引导人员培训方案
- 人教版五年级上册数学(新插图) 小数除法单元复习提升 教学课件
- 集团公司“三重一大”决策工作实施办法
- 《计算机组成原理》全册详解优秀课件
- 五官科眼耳鼻咽喉科医疗常用器械的认识
- 企业清产核资报表
- 2023年山东商务职业学院招考聘用36人笔试历年高频考点试题含答案附详解
- 平凡之路歌词全文
- 2024年全国硕士研究生考试《英语二》模拟试卷一
- 医疗安全不良事件
评论
0/150
提交评论