You need to sign in to do that
Don't have an account?
crocodile
How to store the i/p data in the salesforce database...
Hi,
Can any one please tell me how to store the input data supplied through text fileds of a Visualforce page into the salesforce databse...
Any suggestions are welcome...
Thanks in adv,
-Nath
What does your visualforce page look like so far?
If you are using a standard controller, just add
<apex:pageBlockButtons location="top"> <apex:commandButton action="{!save}" value="save" id="saveButton"/> </apex:pageBlockButtons>
The "save" method references the standard controller.