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

CustomController&Controllerextension
What is the use of ControllerExtension in salesforce?
Instead of using customcontroller why we use Controllerextension?
Any explanations........
Thanks
=========
VenkatSForce
A custom controller is an Apex class that implements all of the logic for a page without leveraging a standard controller. Use custom controllers when you want your Visualforce page to run entirely in system mode, which does not enforce the permissions and field-level security of the current user.
when u want to use standard controller (SObject) and there is also requirement to use one more apex controller then use
Controllerextension rather than controller else use Only Controller.
standard controller (SObject)+Controllerextension.
or
Controller