
3 件の回答
Hi Divya,Try this code:Vf page:<apex:page controller="Buttonclick_controller"> <apex:form> <apex:pageBlock> <apex:commandButton value="click" action="{!countclick}"/> <br/> Number of clicks= {!countvalue} </apex:pageBlock> </apex:form> </apex:page>Controller class:public class Buttonclick_controller {public Integer count{get;set;}public Integer countvalue{get;set;}public Buttonclick_controller(){ count=1;}public void countclick(){ countvalue=count++; }}Hope this code will help you.Mark it as best answer so that others get help from this too.Thanks.Ajay Dubedi