so please how i can transfer a datatable from page to another?
The standard approach is populating the DataTable from a database.
Another approach is caching the DataTable in ASP.NET Session or MemoryCache.
Session("MyDataTable") = MyDataTable
Keep in mind, it is always better to get data from the source like a database.