Board logo

標題: gridview增加計算列(ASP.NET) [打印本頁]

作者: child    時間: 2010-8-11 14:43     標題: gridview增加計算列(ASP.NET)

Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs)
    e.Row.Cells(2).Text = (Convert.ToInt32(e.Row.Cells(0).Text) * Convert.ToDouble(e.Row.Cells(1).Text)).ToString()
End Sub

因為會從標題列開始計算會造成異常,請教如何從標題列下面開始計算,很謝謝大家的幫忙^^
作者: Luc    時間: 2010-8-15 00:24

處理前先判斷是不是資料列
If e.Row.RowType = DataControlRowType.DataRow Then
    ... '略
End If
作者: child    時間: 2010-8-16 08:49

處理前先判斷是不是資料列
If e.Row.RowType = DataControlRowType.DataRow Then
    ... '略
End If
Luc 發表於 2010-8-15 00:24



    謝謝Luc 的幫忙^^




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)