SELECT ROW IN A GRID VIEW BY CLICKING
Protected Sub GridView_Labels_RowCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView_Labels.RowCreated
If e.Row.RowType = DataControlRowType.DataRow Then
e.Row.Attributes.Add(“onclick”, Page.ClientScript.GetPostBackEventReference(sender, “Select$” & e.Row.RowIndex.ToString))
e.Row.Style(“cursor”) = “hand”
End If
End Sub






