I used the search function and I've seen a lot of topics about "how to highlight a text " but I couldn't find a way to implement it in my asp.net website project.
I'm using a gridview and for search function I'm using this :
SqlDataSource1.SelectCommand = "select * from TableName where Name like '%" + TextBox1.Text + "%' or SecName like '%" + TextBox1.Text + "%'";
SqlDataSource1.DataBind();
How can I do it ? I would like someone to explain step by step , I need to do this for tomorrow and I'm not very advanced. ty