Hi
i am binding DataGridView in asp.net web form with large number of rows (10000) rows in dataset and getting error on grd.DataBind() System.OutOfMemoryException.
May be its my memory issue of Ram ?
i want to do this without paging solution.
Size of DataSet exceed memory of your RAM.
Use Top keyword in the select query to avoid issues or use custom paging.
You should better avoid load so much data at once.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.