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
saisaisaisai 

Navigating from page1 to page2 to using Visual Force page.

How to create a simple VF Page with only one link in it which will upon clicking on it will take me to another VF Page2.

Please help.

Thanks

Sai

Best Answer chosen by Admin (Salesforce Developers) 
Suresh RaghuramSuresh Raghuram

Sai

 

First you should learn about the visual force components. they are some what similar like html.

 

if you know how to devlop a vf Page.

 

this is how it looks 

<apex:Page controller="standard">

<apex:form>

<a href='place the url of the next page to which you want to navige"> Click here to navigate to the next page</a>

</apex:form>

</apex:Page>

 

Learn abt controllers and visualforce pages. you should be familiar with  apex coding and some scripting.

Just follow this tutorial u can become familiar with vf pages and controllers.

http://wiki.developerforce.com/page/An_Introduction_to_Visualforce

 

IF this helps you make this as a solution and give KUDOS.

 

Yours,

Suresh.