服务器之家

服务器之家 > 正文

asp.net中将数据库绑定到DataList控件的实现方法与实例代码

时间:2019-09-16 11:44     来源/作者:asp.net教程网

解决方法1: 
datalist databind() 
解决方法2: 
查看MSDN上的详细说明资料 
解决方法3: 
在DataList的模板中用table表格,如: 

复制代码代码如下:


<asp:DataList ID="dlDetailedInfo" runat="server" OnItemDataBound="dlDetailedInfo_ItemDataBound" Width="100%"> 
<ItemTemplate> 
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="TablebTitle"> 
<tr> 
<th colspan="2" scope="col"> 
数据库绑定到DataList控件 </th> 
</tr> 
<tr> 
<td width="25%" class="TableGrayRight"> 
数据库绑定到DataList控件 </td> 
<td class="TableNoneLeft"> 
<asp:Label ID="lblTypeName" runat="server" Text='<%# Eval("TypeName") %>'></asp:Label> 
</td><!--数据库绑定到DataList控件 </tr> 
</table> 
</ItemTemplate> 
</asp:DataList> 


解决方法4: 
你的控件的text使用<%# Eval(" IT从业者之家(www.3ppt.com") %> 
比如:txext='<%# Eval("title")%>' 
绑定分页实现 
dlBind方法为自定义的无返回值类型方法,该方法主要用来从数据库中查询出符合指定条件的记录,并绑定到DataList控件中,然后通过设置 PagedDataSource类对象的AllowPaging属性为True,来实现DataList控件的分页功能。dlBind方法实现代码如下: 

复制代码代码如下:


public void dlBind() 

int curpage = Convert.ToInt32(this.labPage.Text); 
PagedDataSource ps教程 = new PagedDataSource(); 
sqlcon = new SqlConnection(strCon); 
sqlcon.Open(); 
string sqlstr = "select a.*,b.* from tb_Card as a join tb_Module as b on a.ModuleID=b.ModuleID"; 
SqlDataAdapter MyAdapter = new SqlDataAdapter(sqlstr, sqlcon); 
DataSet ds = new DataSet(); 
MyAdapter.Fill(ds, "tb_Card"); 
ps.DataSource = ds.Tables["tb_Card"].DefaultView; 
ps.AllowPaging = true; //是否可以分页 
ps.PageSize = 2; //显示的数量 
ps.CurrentPageIndex = curpage - 1; //取得当前页的页码 
this.lnkbtnUp.Enabled = true; 
this.lnkbtnNext.Enabled = true; 
this.lnkbtnBack.Enabled = true; 
this.lnkbtnOne.Enabled = true; 
if (curpage == 1) 

this.lnkbtnOne.Enabled = false;//不显示第一页按钮 
this.lnkbtnUp.Enabled = false;//不显示上一页按钮 

if (curpage == ps.PageCount) 

this.lnkbtnNext.Enabled = false;//不显示下一页 
this.lnkbtnBack.Enabled = false;//不显示最后一页 

this.labBackPage.Text = Convert.ToString(ps.PageCount); 
this.dlContent.DataSource = ps; 
this.dlContent.DataKeyField = "CardID"; 
this.dlContent.DataBind(); 
sqlcon.Close(); 

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-07-24
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部