我已經閱讀從MSDN的定義(見下文),這對我沒有幫助。我動態添加gridviewrows到我的gridview,不知道什麼是參數。GridViewRow構造函數參數,它們究竟是什麼?
public GridViewRow(
int rowIndex,
int dataItemIndex,
DataControlRowType rowType,
DataControlRowState rowState
)
的rowIndex類型:System.Int32的在GridView控制的 Rows集合的GridViewRow對象的索引。
dataItemIndex類型:System.Int32基礎DataSet中的 中的DataItem的索引。
ROWTYPE類型:System.Web.UI.WebControls.DataControlRowType其中 DataControlRowType枚舉值。
RowState的類型:System.Web.UI.WebControls.DataControlRowState的DataControlRowState枚舉值的按位 組合。
的rowIndex會給你當前插入行中的GridView – user1102001 2013-04-04 13:10:57
@ user1102001並補充說,作爲一個參數,如何影響新創建gridviewrow? – HOY 2013-04-04 13:18:30
有很多方法可以將行添加到gridview,但rowindex不需要這樣做 – user1102001 2013-04-04 13:24:17