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
madhu l 1madhu l 1 

please tell me the code for this 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>
Best Answer chosen by madhu l 1
William TranWilliam Tran
Try this:

 <apex:commandButton action="{!Browse}" value="Open"/>
 <apex:commandButton action="{!Upload}" value="save"/>

As a common practice, if your question is answered, please choose 1 best answer.
But you can give every answer a thumb up if that answer is helpful to you.

Thanks
 

All Answers

William TranWilliam Tran
Try this:

 <apex:commandButton action="{!Browse}" value="Open"/>
 <apex:commandButton action="{!Upload}" value="save"/>

As a common practice, if your question is answered, please choose 1 best answer.
But you can give every answer a thumb up if that answer is helpful to you.

Thanks
 
This was selected as the best answer
Himanshu ParasharHimanshu Parashar
Hi Madhu,

What do you want to know 
William TranWilliam Tran
This should look something like this:
 
<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>

Thx
madhu l 1madhu l 1
hi william please give apex class for this page