Eh...no... mi sa che non ci sono....

Protected Sub intecerctRowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound


If e.Row.RowType = DataControlRowType.DataRow Then

If Not (e.Row.RowState = DataControlRowState.Edit) Then
e.Row.RowState = DataControlRowState.Edit
Dim grd As GridView = CType(e.Row.FindControl("nestedGW"), GridView)
Dim oRubrica As New DalRubrica
Dim dsRubrica As New dsRubrica

dsRubrica = oRubrica.CaricaRubrica(txtStringaCerca.Text, 5)

grd.DataSource = dsRubrica
grd.BackColor = Drawing.Color.Red
grd.DataBind()

Dim lbl As String = CType(e.Row.FindControl("PROVA"), Label).Text
lbl = "CIao"


End If
End If

End Sub

ho aggiunto quello che mi dici,ma niente.... ma la cosa paradossale è che, seguendo questo ragionamento anche il template 2, quello con ID="PROVA" avrebbe dovuto presentarmi qualcosa, ma invece vedo le colonne sempre desolatamente vuote.

Eppure lì dentro ci entra.