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
abhaabha 

Entering data through visualforce page

In my application user will enter his data on visualforce webpage. It should get saved in object models? Do I need to write any separate controller for that? How can I achieve this?

In addition, I am authenticating user's through customer portal. Whether I need some extra user's permissions or any changes in object's settings?

Can anybody provide me some tutorials, which contains data and visualforce page connectivity?

bob_buzzardbob_buzzard

The developer cookbook has an example of using a form to enter data that gets stored in an object at:

 

http://www.salesforce.com/docs/developer/cookbook/Content/vf_form.htm

 

If you are doing this through the customer portal, you just need to make sure that the portal user profile has appropriate access to the objects and fields in question, and that the objects are marked as available in the customer portal.

abhaabha
Thank you!!