• madhu l 1
  • NEWBIE
  • 20 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 12
    Questions
  • 3
    Replies


<apex:page controller="CountryClub" showheader="false" sidebar="false"> <apex:form> <apex:pageblock> <apex:pageBlockButtons> <apex:commandButton action="{!Browse}" value="Open"/> <apex:commandButton action="{!Upload}" value="save"/> </apex:pageBlockButtons> <apex:pageblocksection> <apex:image url="{!imageURL}"/> </apex:pageblocksection> </apex:pageblock> </apex:form> </apex:page>
 

<apex:page controller="CountryClub" showheader="false" sidebar="false">

    <apex:form>
      <apex:image url="{!imageURL}">
    </apex:image></apex:form>
<apex:pageBlockButtons>
            <apex:commandButton action="Browse" value="Open"/>
            <apex:commandButton action="Upload" value="save"/>
        </apex:pageBlockButtons>

</apex:page>