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
MohanaGopalMohanaGopal 

Visual Force Page without sidebar

Hi..
   I am not familiar with VF.
              In my developer login I create one visual force tab..    
              When I click that tab I want to display my visual force page without side bar..
              In this page I have many links to another vf page..
              I wants those pages also show without side bar..
             <apex:outputLink value="https://na2.salesforce.com/apex/LT_EE" > Waste Water</apex:outputLink>  
             I am using above code for display my another page..
            
    Using S-control I can achive it.. How can I do this in VF..
 
            
hisrinuhisrinu
Hi,

In the apex page tag use sidebar="false"
<apex:page controller="Rephome" sidebar="false" >
write your code here
</apex:page>