1.
Private
Sub
myGridView_RowDataBound(sender
As
Object
, e
As
GridViewRowEventArgs)
2.
3.
Dim
hplHyperLink
As
HyperLink =
CType
(e.Row.FindControl(
"hplHyperLink"
),HyperLink)
4.
IF
Not
IsNothing(hplHyperLink)
Then
5.
hplHyperLink.NavigateUrl =
"WebPage.aspx?ID="
& e.Row.DataItem(
"ID"
)
6.
End
IF
7.
End
Sub