Skip to main content
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 Antworten
  1. 30. Nov. 2016, 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