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
Srinivas AnnamSrinivas Annam 

how to display 1 to 10 digits with implementation of only visual force page

Best Answer chosen by Srinivas Annam
Medhya MahajanMedhya Mahajan
If you do not want to use a controller and only VF page. One way could be as shown below by using Javscript:

<apex:page >
    <script>    
    var i;
     for(i=1; i<=10; i++){
         document.write(i);
     }
    </script>
</apex:page>

If this solves your query, please mark it as solved.

Regards
Medhya Mahajan