• JeetuGupta
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

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