共用方式為


WebGrid.Bind 方法

定義

將指定的資料系結至 WebGrid 實例。

public System.Web.Helpers.WebGrid Bind (System.Collections.Generic.IEnumerable<dynamic> source, System.Collections.Generic.IEnumerable<string> columnNames = default, bool autoSortAndPage = true, int rowCount = -1);
member this.Bind : seq<obj> * seq<string> * bool * int -> System.Web.Helpers.WebGrid
Public Function Bind (source As IEnumerable(Of Object), Optional columnNames As IEnumerable(Of String) = null, Optional autoSortAndPage As Boolean = true, Optional rowCount As Integer = -1) As WebGrid

參數

source
IEnumerable<Object>

要顯示的資料。

columnNames
IEnumerable<String>

包含要繫結之資料行名稱的集合。

autoSortAndPage
Boolean

true 表示啟用實例的 WebGrid 排序和分頁,否則為 false。

rowCount
Int32

要在格線的每個頁面上顯示的資料列數目。

傳回

系結和填入 WebGrid 的實例。

適用於