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
Alberto Garcia 24Alberto Garcia 24 

Calling a page from other page

Hi.

I just want that one of my pages to a get request to other of my pages. I know how to do GET requests from APEX but because pages are behind auth I don't know how I can do it. 
For example: So I want that the app: https://c.na24.visual.force.com/apex/test01 calls https://c.na24.visual.force.com/apex/test02
Thank you
S.Haider RazaS.Haider Raza
<apex:page showHeader="false">
    test01
    <apex:outputLink value="/apex/test02">test02</apex:outputLink>
</apex:page>
above page (test01 )calls the page below
 
<apex:page showHeader="false">
    test02
</apex:page>

 
S.Haider RazaS.Haider Raza
Alberto did the above helped you?