Skip to main content
Andrea Rapacci (Accenture SPA) 님이 #Apex에 질문했습니다
Hello guys,

I'm trying to develop my first visualforce page. I would like to have some text box and a button that, on the click with a method, take the text in the boxes and call an external method to cuncatenate them in a new page. 

How can I do? 

Thank you very much for the time that you will spend for me.

 
답변 3개
  1. 2016년 11월 30일 오전 11:55
    Hi Rapaich

    Yes you have to develop a Custom Controller\ like 

     <apex:page controller="Sendparameters">

    .And instead of Using <p> tag you can use <apex:outputlabel>

    In COntroller method You have to add PageReference to Redirect to Next Page.And You can send Parameters i.e Your input Text Values to Next Page with pageReference and Get these parameters on next Page From Url

    I can provide You an example but Self Learning will teach You most.Try Step by Step

    If you need Further guidence or you are struck anywhere please let me know

     
0/9000