Fixing the size of data gridview
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
I want to restrict the size of a datagridview to only 5 rows at a time..How can i achieve this?
-
I want to restrict the size of a datagridview to only 5 rows at a time..How can i achieve this?
Use <asp:DataGridView AllowPaging=true PageSize=5> :thumbsup:
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
I want to restrict the size of a datagridview to only 5 rows at a time..How can i achieve this?
Set AllowPaging="true" and PageSize="5" http://www.dotnetspider.com/resources/1249-Grid-View-Paging-Sorting.aspx[^]
Arun Jacob http://codepronet.blogspot.com/