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
Raju Sudheer 3Raju Sudheer 3 

what are visual force execution steps

William TranWilliam Tran
Raju,

Just create and save the page and you are done. the page will render automatically once you go to the page ...../apex/pagename

If you have custom controller than it goes through the initializing method, but if you are asking this question than custom controller is a little bit advanced.

See good introduciton link below:

https://developer.salesforce.com/page/An_Introduction_to_Visualforce


ths is a sample Visualforce page to display: "congratuations" message.

thx.
<apex:page standardcontroller="contact" >
  <!-- Begin Default Content REMOVE THIS -->
  <h1>Congratulations</h1>
  This is your new Page: ContactView
  <!-- End Default Content REMOVE THIS -->
</apex:page>