function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
p pominap pomina 

can i display the record 90000 in visuval page it is possible

Raj VakatiRaj Vakati
I Would you can do in this way Implement custom pagination .. With Single Query, you are not able to do it.
  1. Create a Visual force page that shows only records start with A on the first load .. 
  2. Creation pagination that contains A --> Z buttons .  on click on these buttons fetch the data and display on the page 

https://sfdcfanboy.com/2016/06/14/visualforce-pagination-with-dynamic-search/
Deeprao18Deeprao18
Surely you can but you need to use pagination in the controller you can use StandardSet Controller logic in your existing controller or you can write a custom pagination code by using the above link
 
Nishant Prajapati 10Nishant Prajapati 10
StandardSetController can handle 10000 records only. You can use @ReadOnly annotaion on your apex method, which relaxes the limit of soql Maximum rows retrieved by queries for a single Visualforce page request from 50000 to 1,000,000. You can then AngularJS Pagination logic on visualforce page or use jquery grid to display data.