Private Sub myGridView_RowDataBound(sender As Object, e As GridViewRowEventArgs)
'*** hplHyperLink ***'
Dim hplHyperLink As HyperLink = CType(e.Row.FindControl("hplHyperLink"),HyperLink)
IF Not IsNothing(hplHyperLink) Then
hplHyperLink.NavigateUrl = "WebPage.aspx?ID=" & e.Row.DataItem("ID")
End IF
End Sub