Hi,

I haver an objectdatasource that gets data from business logic layer through typed dataset designer and tableadapter. then I have a gridview bound to the objectdatasource in the aspx view (no code behind s been written so far)

The gridview has paging and sorting enabled. The datakey field is also a column displayed in my gridview.

I need to implement this:

On top of my web page , I have a texbox in which the user types in a value of the datakey to look for in my gridview. Then I should go through the gridview and find that searched datakey amongst the rows of my gridview (remember paging and sorting are enabled, so the searched datakey can be found in the 3rd or 4th page of the gridview).

How can I implement this with the least amount of code, pls?

p.s: pls remember that user can already select a column to sort the gridview, so i need that to be taken into consideration as well.



Thanks for your patience for reading all this