01.
For
i as integer = 0 to Gridview.rows.count -1
Then
02.
03.
dim a as label = gridview.rows(i).findcontrol(
"lbl_text1"
)
04.
dim b as label = gridview.rows(i).findcontrol(
"lbl_text2"
)
05.
dim c as label = gridview.rows(i).findcontrol(
"lbl_text3"
)
06.
dim d as label = gridview.rows(i).findcontrol(
"lbl_text4"
)
07.
08.
09.
10.
If
a = ID
Then
11.
12.
a.text = string.empty
13.
b.text = string.empty
14.
c.text = string.empty
15.
d.text = string.empty
16.
Exit
For
17.
End
If
18.
19.
Next