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
ChinnoduChinnodu 

i wanted code in vf page and apex class?

   how to  write a code   i have one tab , that tab is Search job , u can clickied on  the tab then it will go to next page. i wanted code in vf page and apex class? by using pagerefrence, kindely give me reply 

 

Suresh RaghuramSuresh Raghuram

hi viswa,

 

If you are new to the VF pages and apex classes.

this is the path where the vfpages and apex classes will  develop.

 

go to setup->Develop -> pages

 

http://www.salesforce.com/us/developer/docs/pages/index.htm

http://www.salesforce.com/us/developer/docs/apexcode/salesforce_apex_language_reference.pdf

 

Follow the above link to learn about the visualforce pages and classes.

If this answers your question make this as a solution.

ChinnoduChinnodu

 hi suree,

                  Allredy i am usin apex and vf page , for example now i can be created one application in that application one tab.

 

             example u will go to naukari.com there u see "search job"  u can clickied on  the tab then it will go to next page

 

 

This is my task

   how to  write a code   i have one tab , that tab is Search job , u can clickied on  the tab then it will go to next page.? kindely give me reply 

 

 

Thanks

Suresh RaghuramSuresh Raghuram

your tab must be a command button or command link then

 

<apex:commandButton action="{!searchJobMethod}" value="Search Job" />

 

In the back end

 

public pageReference searchJobMethod(){

 

pageReference pageRef = new pageReference('/UR URL');

pageRef.setRedirect(true);

retrun pageRef;

}