Đang chuẩn bị liên kết để tải về tài liệu:
ASP.NET 4 Unleased - p 68

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

Hiển thị dữ liệu trong nhiều cột Bạn có thể làm cho nội dung của một điều khiển DataList vào một bảng nhiều cột, trong đó mỗi mục dữ liệu chiếm một ô bảng riêng biệt. Hai đặc tính thay đổi cách bố trí của bảng HTML do người điều khiển DataList. RepeatColumns-Số cột để hiển thị. . RepeatDirection-Các hướng để đưa ra các tế bào. | 644 CHAPTER 13 Using the Repeater and DataList Controls Displaying Data in Multiple Columns You can render the contents of a DataList control into a multicolumn table in which each data item occupies a separate table cell. Two properties modify the layout of the HTML table rendered by the DataList control RepeatColumns The number of columns to display. RepeatDirection The direction to render the cells. Possible values are Horizontal and Vertical. For example the page in Listing 13.8 displays the contents of the Movies database table in a three-column layout see Figure 13.6 . FIGURE 13.6 Displaying a multicolumn DataList. LISTING 13.8 MultiColumnDataList.aspx @ Page Language C html xmlns http www.w3.org 1999 xhtml head id Head1 runat server title MultiColumn DataList title head body form id form1 runat server div From the Library of Wow eBook Using the DataList Control 645 asp DataList id dlstMovies DataSourceID srcMovies RepeatColumns 3 GridLines Both Runat server ItemTemplate h1 Eval Title h1 Directed by Eval Director br Box Office Totals Eval BoxOfficeTotals 0 c ItemTemplate asp DataList 13 asp SqlDataSource id srcMovies ConnectionString SelectCommand SELECT FROM Movies Runat server ConnectionStrings Movies Title Director BoxOfficeTotals div form body html The DataList control in Listing 13.8 includes a RepeatColumns property that has the value 3. If you set the RepeatDirection property to the value Horizontal and do not assign a value to the RepeatColumns property the DataList renders its data items horizontally without end. NOTE You can display data items in multiple columns when the DataList i s in Flow layout mode. In that case br tags create the row breaks. Using Templates with the DataList Control The DataList control supports all the same templates as the Repeater control ItemTemplate Formats each item from the data source. AlternatingItemTemplate Formats every other item from the data source. SeparatorTemplate Formats between each item from the data .

TÀI LIỆU LIÊN QUAN