i have a data access layer which returns data from stored procedures. If i bind this to a gridview control in asp.net 2.0, the users then have an option of filtering on that data select list where in they can choose the conditional clause of
like
=
or
and
Once the result is returned, I do not want to hit the Db again with the filters applied.
I have an option to use .net 3.5 if the need be. i looked at this: http://weblogs.asp.net/jgaylord/archive/2006/05/31/Filter-A-GridView-After-The-Initial-Bind.aspx
and not sure of its efficiency.