Is there a basic smaple out there that has one or two calendar controls on a web form that will sort a gridview control between dates? Any help appreciated. Allan
On 1 Jul, 04:12, Allan wrote: > Is there a basic smaple out there that has one or two calendar controls on a > web form that will sort a gridview control between dates? > > Any help appreciated. > > Allan By "sort" do you mean filter? For sorting, Gridview has a mechanism using the header row. Just supply a sort expression for each column you want to sort on and enable sorting via the propertied window. Then is no general solution for filtering because it depends on the DataSource, which is where the filtering actually occurs. GridView itself cant do it. HTH