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
JeetuGuptaJeetuGupta 

How can we look Visualforce markup to Visualforce normal page

Hi,

 

Currently i am using free developer edition of salesforce and I still write this code on Visualforce Page:

<apex:page controller="leadLookupController">
<apex:form >
    <apex:outputLabel value="Email" />:
    <apex:outputLabel value="{!SearchString}" /><br/>
    <apex:outputLabel value="Street" />:
    <apex:outputLabel value="{!Lead.street}" /><br/>
    <apex:outputLabel value="City" />:
    <apex:outputLabel value="{!Lead.city}" /><br/>
    <apex:outputLabel value="State" />:
    <apex:outputLabel value="{!Lead.state}" /><br/>
    <apex:outputLabel value="Zip" />:
    <apex:outputLabel value="{!Lead.postalcode}" /><br/>
</apex:form>
</apex:page>

 

But I want to see this code as normal page(design view). I dont have any clue that how can I see this code on that and I already dont have any tab/option in my developer edition login.

 

Please help any one. It is very important for me.

 

Thanks and regards,

Jeetu Gupta

bob_buzzardbob_buzzard

Are you looking to use something like the page layout editor?  If so then you are out of luck as that allows the standard page layouts to be changed, but there is no equivalent for Visualforce (unless there's something on the app exchange).

BaLab2aBaLab2a

Hi,

 

 

If you  just want to see the output of your visualforce page without using taboption.

Please try this..

 

 

  •  Add Standardcontroller and make your controller as Extensions

<apex:page standardcontroller= "Lead" extensions= "leadLookupController">


  • make neccessary changes in controller
  • Create a Custom DetailPage Button for Object "Lead" and assign this visualforce page to it.
  • check the output of visualforce page on button click

 

 

Check whether it is works and let me know if it fails..

 

Thanx

Bala