gridvew

Add New Row to GridView without DataBind

Hello all, I have a GridView that allows editing the values in every column, in every row, all the time. The user enters in all their changes, clicks Save once and all changes are commited. The user must also be able to click the New button, have a new row appear in the GridView (yep, it has to show up in the actual GridView), enter w...

Dynamically Run IQueryable Method

Hi! I'm trying to run the Count() function of a Linq statement in an overriden Gridview function. Basically, I want to be able to assign a linq query to a gridview, and on the OnDataBound(e) event in my new extended gridview have it retrieve the count, using the IQueryable. So, I need to dynamically cast the GridView.DataSource to my L...