[SalesForce] How to display all the records of a custom object to a apex:detail

I have an object in a controller and i and i want to display all the records from the object to a Vf page apex:detail. Is it possible to display all the records from a custom object to a Vf page using apex:detail. Or is their any other way to get it solved. Because SOQL records have limits but if i use apex:details or any other apex component then it will display without any limits all the records. So please guide me if their any other way to get this issue solved.

Best Answer

Considered using an Apex repeat element? http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_repeat.htm

You can design the detail view with the fields you need. Consider using paging to improve performance.