Salesforce Model-View-Controller (MVC) pattern contains below three modules: Model View Controller 1. Visual Force pages, Page Layouts, Tabs comes under View Layer of Model View controller . 2. Workflows, Apex Classes, …
MVC
-
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
MVC Interview Questions and Answers For Graduates Part-5
by Sby S41.Can a view be shared across multiple controllers? If Yes, How we can do that? Yes we can share a view across multiple controllers. We can put the view in …
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
MVC Interview Questions and Answers For Graduates Part-4
by Sby S31.How to change the action name in ASP.Net MVC? “ActionName” attribute can be used for changing the action name. Below is the sample code snippet to demonstrate more : [ActionName(“TestActionNew”)] …
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
MVC Interview Questions and Answers For Graduates Part-3
by Sby S21.What are HTML Helpers in ASP.Net MVC? HTML Helpers are like controls in traditional web forms. But HTML helpers are more lightweight compared to web controls as it does not …
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
MVC Interview Questions and Answers For Graduates Part-2
by Sby S11.What are Actions in ASP.Net MVC? Actions are the methods in Controller class which is responsible for returning the view or json data. Action will mainly have return type : …
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
MVC Interview Questions and Answers For Graduates Part-1
by Sby S1.Breifly explain us what is ASP.Net MVC? ASP.Net MVC is a pattern which is used to split the application’s implementation logic into three components i.e. models, views, and controllers.
-
MVC Architecture Model: contains the business logic and interact with the persistance storage to store, retrive and manipulate data. View: is responsible for dispalying the results back to the user. In Struts …
- APEXSALESFORCESalesforce Interview QuestionsSalesforce.comTriggersVisual ForceVisualforce
MVC Salesforce Architecture development
MVC Salesforce Architecture development What is MVC in Salesforce? M – Model (OBJECTS) V – View (Page Layout & Visualforce Pages) C – Controller (APEX CLASS) Model: Designing the data …