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

Hi all, I have a urgent requirement what is the problem is:
i have two vfpages. In one vfpage i have some pageblocks on each pageblock i have pageblocksections in one of the pageblock i need to add another vfpage pageblocksections. i have tried <apex:include> but it does not work cause of nested form tag. on each vfpage i have standardcontroller and extensions. when i tried to use code in the first page it is referencing the second vfpage standardcontroller name but we can not use two standardcontrollers in same vfpage. please help me it would be saved me.
Thanks.
Thanks.
To use a VF page in another VF page you need to use apex:iframe
It will look something like this:
<apex:iframe src="{!pageNameVariable}" />
How you want to use it in your code will totally depend on your VF page.
Let me know if it helps.
Thanks!