New Batch#100 (10th Nov 2021) - Salesforce Admin + Dev Training (WhatsApp: +91 - 8087988044) :https://t.co/p4F3oeQagK

Showing posts with label To perform arithmetic operations (VF). Show all posts
Showing posts with label To perform arithmetic operations (VF). Show all posts

Saturday, 26 May 2012

To perform arithmetic operations (VF)


<apex:page sidebar="false" controller="arthematic">
<!-- We should create form for inserting data into the text fields-->
<apex:form >
<!-- value atrribure in inputtext is used to set and get the values i.e date enterd in inputbox to controller & controller to vf page-->
<b>Enter value1:</b>&nbsp;&nbsp;<apex:inputText value="{!num1}"/><br/><br/>
<b>Enter value2:</b>&nbsp;&nbsp;<apex:inputText value="{!num2}"/><br/><br/>
<!--commandButton is used to create the button-->
<apex:commandButton value="Sum"/>&nbsp;
<!-- outputText to show the output-->
<apex:outputText value="{!sum}"/><br/><br/>
<apex:commandButton value="Diff"/>&nbsp;
<apex:outputText value="{!diff}"/><br/><br/>
<apex:commandButton value="Mul"/>&nbsp;
<apex:outputText value="{!mul}"/><br/><br/>
</apex:form>
</apex:page>




**************
**************

Labels