asp.net中將資料庫綁定到DataList控制項的實現方法與執行個體代碼

來源:互聯網
上載者:User

解決方案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();
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.