TAILIEUCHUNG - ASP.NET 4 Unleased - p 84

Chú ý Cơ chế phân trang được mô tả trong phần này dựa trên cơ chế sử dụng bởi các ASP của Microsoft. Diễn đàn tại NET và các diễn đàn XBOX tại . Cả hai của các trang web này giải quyết một số khó tin của bài viết tin nhắn mỗi ngày. | 804 CHAPTER 18 Using the ObjectDataSource Control When you open the page in Listing the GridView displays its paging interface which you can use to navigate between different pages of records see Figure . FIGURE Displaying multiple pages with data source paging. NOTE The paging mechanism described in this section is based on the mechanism used by the Microsoft ASPNET forums at http forums and the XBOX forums at http . Both of these websites handle an incredible number of message posts every day. The forums software was written with ASPNET and is available from TelligentSystems as part of their Community Server product. If temporary tables make you anxious you have an alternative when working with Microsoft SQL Server 2005 or 2008. You can take advantage of the new ROW_NUMBER function to select a range of rows. The ROW_NUMBER function automatically calculates the sequential number of a row within a resultset. The modified stored procedure in Listing does the same thing as the stored procedure in Listing . However the modified stored procedure avoids any temporary tables. From the Library of Wow eBook Paging Sorting and Filtering Data with the ObjectDataSource Control 805 LISTING CREATE PROCEDURE @StartRowIndex INT @MaximumRows INT AS WITH OrderedMovies AS SELECT Id ROW_NUMBER OVER ORDER BY Id AS RowNumber FROM Movies SELECT FROM OrderedMovies JOIN Movies ON WHERE RowNumber BETWEEN @StartRowIndex 1 AND @startRowIndex @maximumRows 1 User Interface Sorting If you need to sort the records displayed by the GridView control the easiest type of sorting to enable is user interface sorting. When you take advantage of user interface sorting the records are sorted in the server s memory. For example the page in Listing contains a GridView that has its .

TÀI LIỆU MỚI ĐĂNG
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.