GridView : Summary Data and Display on Footer
1. กำนหนดที่ GridView ให้ ShowFooter = true
2. แล้วสร้าง Method ที่ชื่อ RowDataBound
3. Coding ดังนี้
If (e.Row.RowType = DataControlRowType.DataRow) Then
sq_oqua += CDbl(e.Row.Cells(1).Text)
ElseIf (e.Row.RowType = DataControlRowType.Footer) Then
e.Row.Cells(0).Text = "Total"
e.Row.Cells(1).Text = FormatNumber(sq_oqua, 2)
End If
2. แล้วสร้าง Method ที่ชื่อ RowDataBound
3. Coding ดังนี้
If (e.Row.RowType = DataControlRowType.DataRow) Then
sq_oqua += CDbl(e.Row.Cells(1).Text)
ElseIf (e.Row.RowType = DataControlRowType.Footer) Then
e.Row.Cells(0).Text = "Total"
e.Row.Cells(1).Text = FormatNumber(sq_oqua, 2)
End If
Comments
Post a Comment