Posted on: 7/15/2015 7:58:28 AM | Views : 802

hi All,
How to make  a gridview  like bellow :  http://dc672.4shared.com/download/ZYbuTfYfba/request.JPG?lgfp=3000 
For now i just can make like this : http://dc672.4shared.com/download/Bwf3T66vba/now.JPG?lgfp=3000    but it doesn't  have line picture above.
This my code : 
For rowIndex As Integer = gv1.Rows.Count - 2 To 0 Step -1 Dim gviewRow As GridViewRow = gv1.Rows(rowIndex) Dim gviewPreviousRow As GridViewRow = gv1.Rows(rowIndex + 1) For cellCount As Integer = 0 To gviewRow.Cells.Count - 1 If gviewRow.Cells(cellCount).Text = gviewPreviousRow.Cells(cellCount).Text Then If gviewPreviousRow.Cells(cellCount).RowSpan < 2 Then ...

Go to the complete details ...