Google Brother Up
Showing posts with label PageIndexChanging. Show all posts
Showing posts with label PageIndexChanging. Show all posts
2008/05/08
THIS DATASOURCE DOES NOT SUPPORT SERVER-SIDE DATA PAGING
To solve this problem (THIS DATASOURCE DOES NOT SUPPORT SERVER-SIDE DATA PAGING ), you must set GridView DataSource Property as DataSet not DataReader .
Labels:
C#,
code behind,
Error in Program,
GridView,
PageIndexChanging
2008/01/07
The GridView 'gdABCD' fired event PageIndexChanging which wasn't handled.
1) If we change DataGrid to a GridView so inside any Event we change
DataGridPageChangedEventArgs to GridViewPageEventArgs.
2) If you set AllowPaging="true" or AllowSorting="true" on a GridView control without using a DataSourceControl DataSource (i.e. SqlDataSource, ObjectDataSource), you will run into the following errors: -
When changing the page on the GridView control: -
The GridView 'GridViewID' fired event PageIndexChanging which wasn't handled.
When clicking a column name to sort the column on the GridView control: -
The GridView 'GridViewID' fired event Sorting which wasn't handled.
As a result of not setting the DataSourceID property of the GridView to a DataSourceControl DataSource, you have to add event handlers for sorting and paging.
DataGridPageChangedEventArgs to GridViewPageEventArgs.
2) If you set AllowPaging="true" or AllowSorting="true" on a GridView control without using a DataSourceControl DataSource (i.e. SqlDataSource, ObjectDataSource), you will run into the following errors: -
When changing the page on the GridView control: -
The GridView 'GridViewID' fired event PageIndexChanging which wasn't handled.
When clicking a column name to sort the column on the GridView control: -
The GridView 'GridViewID' fired event Sorting which wasn't handled.
As a result of not setting the DataSourceID property of the GridView to a DataSourceControl DataSource, you have to add event handlers for sorting and paging.
Labels:
Exception,
GridView,
PageIndexChanging,
Paging
Subscribe to:
Posts (Atom)
Drop Down List
1. http://www.janetsystems.co.uk/Articles/NetArticles/tabid/74/itemid/161/modid/449/Default.aspx