1. Page uses LinqDataSource to bind grid on the aspx page.
2. Grid uses Paging (variable size depending on what the user has selected from dropdown).
3. User inserts new records via USER CONTROL.
4. Once record inserted, I need to select that record in the grid to display the details.
The grid binds to this control to populate the data.
I use a User Control to Update and Add new records to the database.
<EditFormSettings UserControlName="SiteDetails.ascx" EditFormType="WebUserControl">
</EditFormSettings>
Now I need to allow the user to insert a new record.
Save the record then have the radGrid select that record.
We use paging also. I have looked at several of the examples, they all tend to use a datasource in the code behind and bind the grid to that -- We do this via the linqdatasource web control