You need to sign in to do that
Don't have an account?

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 |
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.
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
Thanks
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;
}