Salesforce

Salesforce

Slide Show in Salesforce

Visualforce: <apex:page standardController="Photo__c" extensions="SlideShow" sidebar="false">  <apex:form >    <center>    <apex:image url="{!tmp}"/>    <br/>    <br/>    <br/>       <apex:commandButton action="{!prev}" value="Previous"/>&nbsp;&nbsp;&nbsp;    <apex:commandButton action="{!nxt}" value="Next"/>    </center>  </apex:form></apex:page> Apex Controller: Public Class SlideShow {     public List<Photo__c> ....