需求簡(jiǎn)介:電子商務(wù)網(wǎng)站中,查詢會(huì)員的訂單,點(diǎn)擊“會(huì)員”,展現(xiàn)此會(huì)員的訂單列表。
界面操作:
Step 1 展現(xiàn)會(huì)員列表,如下圖

Step 2 點(diǎn)擊“某一會(huì)員”行 展現(xiàn)會(huì)員訂單列表

實(shí)現(xiàn)思路:
1、 使用用戶控件(CustomerOrders.ascx)展示訂單列表,此用戶控件只需要包含Repeater控件并綁定數(shù)據(jù)源
2、 新建一個(gè)簡(jiǎn)單頁面GridViewDrillDownjQueryQAjax.ASPx,在此頁面引用用戶控件,展示用戶訂單列表
3、 在頁面GridViewDrillDownjQueryQAjax.ASPx新建兩個(gè)DIV:一個(gè)用來展示會(huì)員信息,一個(gè)用來展示某個(gè)會(huì)員的訂單信息。當(dāng)點(diǎn)擊某一會(huì)員信息時(shí),展示此會(huì)員的訂單列表
實(shí)現(xiàn)細(xì)節(jié):
1、 新建用戶控件(CustomerOrders.ascx),拖數(shù)據(jù)源控件 和 Repeater控件到頁面,主要代碼如下
在用戶控件的后臺(tái)代碼中有一屬性CustomerId,它主要用來傳遞參數(shù)

Code
<ASP:SqlDataSource ID="sqlDsOrders" runat="server" ConnectionString="<%$ ConnectionStrings:Northwind %>"
SelectCommand="SELECT [OrderID], [OrderDate], [RequiredDate], [Freight], [ShippedDate] FROM [Orders] WHERE ([CustomerID] = @CustomerID)">
<SelectParameters>
<ASP:Parameter Name="CustomerID" Type="String" DefaultValue="" />
SelectParameters>
ASP:SqlDataSource>
<ASP:Repeater ID="List" DataSourceID="sqlDsOrders" runat="server">
<HeaderTemplate>
<table class="grid" cellspacing="0" rules="all" border="1" style="border-collapse: collapse;">
<tr>
<th scope="col"> th>
<th scope="col">Order IDth>
<th scope="col">Date Orderedth>
<th scope="col">Date Requiredth>
<th scope="col" style="text-align: right;">Freightth>
<th scope="col">Date Shippedth>
tr>
HeaderTemplate>
<ItemTemplate>
<tr class='<%# (Container.ItemIndex%2==0) ? "row" : "altrow" %>'>
<td class="rownum"><%# Container.ItemIndex+1 %>td>
<td style="width: 80px;"><%# Eval("OrderID") %>td>
<td style="width: 100px;"><%# Eval("OrderDate","{0:dd/MM/yyyy}") %>td>
<td style="width: 110px;"><%# Eval("RequiredDate", "{0:dd/MM/yyyy}")%>td>
<td style="width: 50px; text-align: right;"><%# Eval("Freight","{0:F2}") %>td>
<td style="width: 100px;"><%# Eval("ShippedDate", "{0:dd/MM/yyyy}")%>td>
tr>
ItemTemplate>
<FooterTemplate>
table>
FooterTemplate>
ASP:Repeater>
NET技術(shù):使用Ajax和jQuery實(shí)現(xiàn)GridView的展開、合并,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。