版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、在ASP.NET 2.0中操作數(shù)據(jù)之三十三:基于DataList和Repeater使用DropDownList過濾的主/從報表作者:heker2007 字體:增加 減小 類型:轉(zhuǎn)載 時間:2016-05-09 我要評論前面已經(jīng)介紹過使用DropDownList過濾的主/從報表,不過當時是基于GridView,本文算是復習一下,基于DataList和Repeater再次實現(xiàn)一下相同的功能。導言在前面的使用DropDownList過濾的主/從報表一章里我們使用GridView創(chuàng)建的主/從表,顯示一些"主"記錄.用戶可以根據(jù)主記錄來查看"從"
2、;(詳細)的內(nèi)容.主/從表在呈現(xiàn)一對多關(guān)系和含多列的表的信息時是一個好的選擇.在前面我們已經(jīng)學過如何使用GridView和DetailsView來實現(xiàn).本章和后面兩章我們將重新復習一下這些概念,但是主要學習使用DataList和Repeater來實現(xiàn).本章我們將學習使用DropDownList包含主記錄,而在DataList里顯示從記錄.第一步: 增加主/從教程頁首先增加本教程會用到的文件夾(DataListRepeaterFiltering)和頁.新建頁的時候記得選擇Site.master.Default.aspxFilterByDropDownList.aspxCategoryListMa
3、ster.aspxProductsForCategoryDetails.aspxCategoriesAndProducts.aspx圖 1: 創(chuàng)建DataListRepeaterFiltering文件夾和頁然后打開Default.aspx頁,將SectionLevelTutorialListing.ascx用戶控件拖進來.圖2: 在Default.aspx頁里增加SectionLevelTutorialListing.ascx我們需要將主/從教程添加到site map里.打開Web.sitemap,將下面的標記添加到“Displaying Data with the DataList and
4、Repeater”節(jié)點后:?12345678910111213141516171819202122<siteMapNode title="Master/Detail Reports with the DataList and Repeater" description="Samples of Reports that Use the DataList and Repeater Controls" url="/DataListRepeaterFiltering/Default.aspx">
5、60; <siteMapNode title="Filter by Drop-Down List" description="Filter results using a drop-down list." url="/DataListRepeaterFiltering/FilterByDropDownList.aspx" /> <siteMapNode title="Master/Detail Across Tw
6、o Pages" description="Master records on one page, detail records on another." url="/DataListRepeaterFiltering/CategoryListMaster.aspx" /> <siteMapNode title="Maser/Detail on One Page" description="Master records in th
7、e left column, details on the right, both on the same page." url="/DataListRepeaterFiltering/CategoriesAndProducts.aspx" /> </siteMapNode>圖 3: 更新之后的Site Map第二步: 在DropDownList里顯示Categories我們的主/從表將在DropDownList里列出categories ,然后將選擇的item的product用D
8、ataList顯示出來.打開DataListRepeaterFiltering文件夾里的FilterByDropDownList.aspx頁,拖一個DropDownList進來.將DropDownList的ID設(shè)為Categories.在智能標簽上選擇選擇數(shù)據(jù)源,創(chuàng)建一個名為CategoriesDataSource的ObjectDataSource圖 4: 添加一個名為CategoriesDataSource的 ObjectDataSource使用CategoriesBLL類的GetCategories()方法配置ObjectDataSource.然后為DropDownList的text和va
9、lue配置字段(分別為CategoryName和CategoryID).圖 5: 配置DropDownList的Text和Value現(xiàn)在DropDownList里已經(jīng)列出了Categories表里記錄.見圖6.圖 6: 完成后的DropDownList第三步: 添加Products DataList下面將選擇的category關(guān)聯(lián)的product列出來.添加一個DataList,創(chuàng)建一個名為ProductsByCategoryDataSource的ObjectDataSource.用ProductsBLL類的GetProductsByCategoryID(categoryID)來配置它.因為我
10、們的報表是只讀的,所以在INSERT,UPDATE和DELETE標簽里選擇None.圖 7: 選擇GetProductsByCategoryID(categoryID)方法點下一步,向?qū)崾疚覀優(yōu)閏ategoryID參數(shù)選擇source.將Parameter source設(shè)為Control,ControlID設(shè)為Categories.圖 8: 設(shè)置categoryID參數(shù)為Categories DropDownList完成上面的配置后,Visual Studio會為DataList自動生成一個ItemTemplate來顯示每個字段的name和value.我們來做一些改進,只顯示product
11、的name,category,supplier,quantity和price,并在每個item之間加一個<hr>元素(SeoaratorTemplate).我們將使用DataList和Repeater來顯示數(shù)據(jù) 的ItemTemplate例子.ObjectDataSource的標記語言應(yīng)該和下面差不多:?123456789101112131415161718192021222324252627282930313233343536373839<asp:DataList ID="DataList1" runat="server" DataK
12、eyField="ProductID" DataSourceID="ProductsByCategoryDataSource" EnableViewState="False"> <ItemTemplate> <h4> <asp:Label ID="ProductNameLabel" runat="server" Text='<%# Eval("ProductNam
13、e") %>' /> </h4> <table border="0"> <tr> <td class="ProductPropertyLabel">Category:</td> <td><asp:Label ID="CategoryNameLabel" runat="server" Text
14、='<%# Eval("CategoryName") %>' /></td> <td class="ProductPropertyLabel">Supplier:</td> <td><asp:Label ID="SupplierNameLabel" runat="server" Text='<%# Eval("SupplierN
15、ame") %>' /></td> </tr> <tr> <td class="ProductPropertyLabel">Qty/Unit:</td> <td><asp:Label ID="QuantityPerUnitLabel" runat="server" Text='<%# Eval(
16、"QuantityPerUnit") %>' /></td> <td class="ProductPropertyLabel">Price:</td> <td><asp:Label ID="UnitPriceLabel" runat="server" Text='<%# Eval("UnitPrice", "0:C&quo
17、t;) %>' /></td> </tr> </table> </ItemTemplate> <SeparatorTemplate> <hr /> </SeparatorTemplate></asp:DataList> <asp:ObjectDataSource ID="ProductsByCategoryDataSource" runat="serv
18、er" OldValuesParameterFormatString="original_0" SelectMethod="GetProductsByCategoryID" TypeName="ProductsBLL"> <SelectParameters> <asp:ControlParameter ControlID="Categories" Name="categoryID" PropertyN
19、ame="SelectedValue" Type="Int32" /> </SelectParameters></asp:ObjectDataSource>在瀏覽器里看一下頁面.第一次訪問時,和Beverager關(guān)聯(lián)的product都顯示出來了(圖9),但是改變DropDownList不會更新數(shù)據(jù),這是因為還更新DataList需要postback.我們將DropDownList的AutoPostBack屬性設(shè)為true.圖 9: 第一次訪問時, 顯示Beverage的 Products圖 10: 選擇一個新的ca
20、tegory(Produce),更新DataList添加一個 “- Choose a Category -” List Item第一次訪問頁面時,Beveages默認被選中,并且在DataList里顯示它的product.在使用DropDownList過濾的主/從報表 里我們添加了“- Choose a Category -”選項(默認項),顯示所有的product.在GridView里顯示product時這樣很方便.而對DataList而言,每個product要占很大一塊屏幕,因此在選擇“- Choose a Category -”時底下將不顯示product.在DropDownList的屬
21、性里選擇Items屬性,添加一個Text為“- Choose a Category -”,Value為0的項.圖 11: 添加 “- Choose a Category -” 項你也可以直接在DropDownList的標記語言里添加以下代碼:?1234567<asp:DropDownList ID="categories" runat="server" AutoPostBack="True" DataSourceID="CategoriesDataSource" DataTextField="CategoryName" DataValueField="CategoryID" EnableViewState="False"> <asp:ListItem Value="0">- Choose a Category -</asp:ListItem> </asp:DropDownList> 另外我們需要將Dr
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 吉首大學《合唱與合唱指揮2》2021-2022學年第一學期期末試卷
- 吉首大學《Web編程技術(shù)》2021-2022學年期末試卷
- 《機床電氣控制與PLC》期末試卷-B卷及答案
- 吉林藝術(shù)學院《戲曲鑒賞》2021-2022學年第一學期期末試卷
- 吉林藝術(shù)學院《流行音樂演唱錄音實踐Ⅱ》2021-2022學年第一學期期末試卷
- 執(zhí)行四方協(xié)議書范本范本
- 2024年公證遺產(chǎn)繼承分配協(xié)議書模板
- 吉林師范大學《影視語言》2021-2022學年第一學期期末試卷
- 公會邀請主播協(xié)議書范文模板
- 2022年公務(wù)員多省聯(lián)考《申論》真題(青??h鄉(xiāng)卷)及答案解析
- 山東省2023年高考物理模擬(一模、二模)試題知識點訓練:電磁學解答題
- 門診健康宣教 課件
- 心理衛(wèi)生評定量表手冊(增訂版)
- 無人機技術(shù)的無線通信與物聯(lián)網(wǎng)應(yīng)用
- 大學生工程造價職業(yè)生涯規(guī)劃
- 2022年《系統(tǒng)集成項目管理工程師》案例分析真題
- 商戶收款碼自查報告
- 餐飲業(yè)行業(yè)分析報告
- 神話故事燧人鉆木取火
- 中華人民共和國民法典:研究與解讀
- 食品加工與檢驗實訓室建設(shè)方案
評論
0/150
提交評論