如何在gridview中实现以下格式
答案 0 :(得分:1)
我遇到了同样的问题,这是我找到的解决方案。这是在VB
Protected Sub GridV_RowDataBound(sender As Object, e As GridViewRowEventArgs) Handles GridV.RowDataBound
If (e.Row.RowType = DataControlRowType.DataRow) Then
'Here put the condition
If e.Row.Cells(3).Text = "0" Then
e.Row.Cells(1).ColumnSpan = 4
e.Row.Cells(2).Visible = False
e.Row.Cells(3).Visible = False
e.Row.Cells(4).Visible = False
End If
End If
End Sub
我希望这对你有用。
Juan F. Esquerre
答案 1 :(得分:0)
如果符合您的要求,请随时查看此链接。