Hi, i need to search all cells inside a dataviewgrid in VB.net starting with "www" , once i found one cell apply a background color to the complete row and get the next cell with the same String.
Part of my code:
***********************
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim Ds1 As DataSet
Dim SearchSt1 as String = "www"
Ds1 = Session("SetDs") 'assigned one page before load
...some code
GridViewReport.DataSource = Ds1.Tables(0)
GridViewReport.DataBind()
***Here i need to search in GridViewReport "Like" Searchst1 because i need all cells starting with "www" and set row.BackColor = Color.Lightblue***
...some code
End Sub
***************************
Any help will be appreciated.