ASP.NET 2.0資料處理之進階分頁/排序

來源:互聯網
上載者:User
asp.net|分頁|進階|排序|資料   GridView控制項中的"選擇"操作純粹是一個UI概念,它的SelectedIndex屬性與表格的可視資料行中的當前被選中的行的索引相對應。如果你啟用了表格的分頁和排序功能,在執行分頁或排序操作之後,SelectedIndex的值仍然不會變化,因此在執行這些操作之後,一個新資料行被選中了。在某些環境下,保留對指定資料行的選中更好,即使該行在表格的當前頁面中並不可視。下面的例子示範了如何在排序和分頁操作之後仍然保留當前選中的資料行。

Sub GridView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs)
 Dim Row As GridViewRow
 Dim SelectedValue As String = ViewState("SelectedValue")
 If SelectedValue Is Nothing Then
  Return
 End If
 ' 檢測選擇的行是哪個並重新選中它
 For Each Row In GridView1.Rows
  Dim KeyValue As String = GridView1.DataKeys(Row.RowIndex).Value
  If (KeyValue = SelectedValue) Then
   GridView1.SelectedIndex = Row.RowIndex
  End If
 Next
End Sub

Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
 ' 儲存選中行的索引
 If (Not GridView1.SelectedIndex = -1) Then
  ViewState("SelectedValue") = GridView1.SelectedValue
 End If
End Sub

Protected Sub GridView1_PageIndexChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewPageEventArgs)
 ' 重設選中索引
 GridView1.SelectedIndex = -1
End Sub

Sub GridView1_Sorting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewSortEventArgs)
 ' 重設選擇索引
 GridView1.SelectedIndex = -1
End Sub
  GridView和DetailsView還支援一種用於分頁和排序的特殊模式,它利用用戶端向伺服器的回調(callback)操作來擷取新頁面的資料或最近排序過的資料。要啟用這個特性,必須把EnableSortingAndPagingCallbacks屬性設定為真。請注意,當我們執行分頁或排序操作的時候,頁面不需要發回(postback)以檢索新值(儘管執行了用戶端指令碼向伺服器的回調操作)。當GridView或DetailsView包含模板欄位的時候是不支援這個特性的。當這個特性被啟用的時候,不支援在CommandField(命令欄位)中顯示"選擇"按鈕。

<asp:GridView AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="au_id" DataSourceID="SqlDataSource1" EnableSortingAndPagingCallbacks="True" ID="GridView1" runat="server">
……
</asp:GridView>
  儘管GridView、DetailsView和FormView為分頁器(pager)UI提供了預設的顯示方式,你仍然可以通過設定PagerTemplate屬性來自訂分頁器的顯示。在這個模板中,你可以放置按鈕控制項,並把它的CommandName屬性設定為Page,把它的屬性設定為First、Prev、Next、Last或<number>,其中<number>是特定頁面的索引值。下面的例子示範了GridView和DetailsView控制項定義的PagerTemplate。

<PagerTemplate>
<asp:LinkButton CommandName="Page" CommandArgument="First" ID="LinkButton1" runat="server" Style="color: white"><< First</asp:LinkButton>
<asp:LinkButton CommandName="Page" CommandArgument="Prev" ID="LinkButton2" runat="server" Style="color: white">< Prev</asp:LinkButton>
[Records <%= GridView1.PageIndex * GridView1.PageSize %> - <%= GridView1.PageIndex * GridView1.PageSize + GridView1.PageSize - 1 %>]
<asp:LinkButton CommandName="Page" CommandArgument="Next" ID="LinkButton3" runat="server" Style="color: white">Next ></asp:LinkButton>
<asp:LinkButton CommandName="Page" CommandArgument="Last" ID="LinkButton4" runat="server" Style="color: white">Last >></asp:LinkButton>
</PagerTemplate>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.