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
crocodilecrocodile 

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

 

Best Answer chosen by Admin (Salesforce Developers) 
dev_forcedev_force

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.