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
guest1231231guest1231231 

Rendering a Section of the URL

I'm new to VF and HTML, how can I render only a certain section of a URL.  For example, is possible to only render the PPC Overview section of the page below?  Can this be done using VF/HTML or do I need API access?

 


 

 

 

 

 

-Thanks

 

 

Pradeep_NavatarPradeep_Navatar

In my opinion, this is possible through VF. You can put URL in the outputpanel component and rerender that url :

 

<apex:outputpanel id = "outFresh">

<apex:commandlink rerender = "outFresh"/>

</apex:outputpanel>       

   

 

Did this answer your question? if so, please mark it solved.

 

 

guest1231231guest1231231

I'm getting commandLink must occur between apex:form error.