You need to sign in to do that
Don't have an account?

How to insert data through a VisalForce page
Hi!
I'm new to VisualForce development and i have a question. Now I understand how to use VisualForce pages to present the Force Site data to end-users. But, is there a way to make a VisualForce page through which the end users can input data back into the SalesForce application (database). Basically, I want to provide the funcionality to insert new data through a VisualForce page.
Thank you!
hi ,
inserting data into an object through visual force is done by form
In the above example first name is a input field where user types in the data
for submiit button we need to write a method to insert the data.
So the background logic is taken care by apex controller which u need to write a apex class for fetching the data and inserting .
All Answers
hi ,
inserting data into an object through visual force is done by form
In the above example first name is a input field where user types in the data
for submiit button we need to write a method to insert the data.
So the background logic is taken care by apex controller which u need to write a apex class for fetching the data and inserting .
That's all I needed to hear...
Thank you very much!
you are welcome if you think your question is answered please mark the answer as solution.
Done! :)