Visualforce page for editing records using standard controller.

Visualforce page for editing records using standard controller.

A Visualforce page for editing records can be created as follows:


1.Create a new Visualforce page in the Salesforce setup and give it a name, e.g.    “EditRecordPage“.

2.Add the following code to the Visualforce page:


Visualforce page for editing records using standard controller.


Note: Replace [ObjectName] with the actual name of the object you want to edit records for, and Field1__c and Field2__c with the actual field names of the object.


This will create a Visualforce page that allows users to edit existing records for the specified object, with fields specified using apex:inputField. 

The “Save” button will save the changes to the record, and the “Cancel” button will cancel the editing process.

Leave a Reply

Your email address will not be published. Required fields are marked *