What are the strengths of the ASP.NET Web Forms model for building Web applications.
Tuesday, November 12, 2013
Labels:
asp.net,
ASP.NET MVC
Explain ASP.NET MVC Postbacks ?
ASP.NET MVC framework does not use the ASP.NET Web Forms postback model for interactions with the server. Instead, all end-user interactions are routed to a controller class. This maintains separation between UI logic and business logic and helps testability. As a result, ASP.NET view state and ASP.NET Web Forms page life-cycle events are not integrated with MVC-based views.
www.codecollege.NET|www.interviewsguru.com|The Encylopedia of Web Sites|Blogging and Earning
Labels:
asp.net,
ASP.NET MVC
With what feature is the mapping of URLs to the controller classes done in ASP.NET MVC ?
The ASP.NET MVC framework uses the ASP.NET routing engine, which provides flexibility for mapping URLs to controller classes.
www.codecollege.NET|www.interviewsguru.com|The Encylopedia of Web Sites|Blogging and Earning
Labels:
asp.net,
ASP.NET MVC
How does ASP.NET MVC map URLs to server code ?
The ASP.NET MVC framework maps URLs to server code differently than an ASP.NET Web Forms page. Instead of mapping URLs to ASP.NET pages or handlers, the framework maps URLs to controller classes. Controller classes handle incoming requests, such as user input and interactions, and execute appropriate application and data logic, based on user input. A controller class typically calls a separate view component that generates HTML output as the response.
www.codecollege.NET|www.interviewsguru.com|The Encylopedia of Web Sites|Blogging and Earning
Labels:
asp.net,
ASP.NET MVC
What is the expansion of MVC ?
Model View Controller
www.codecollege.NET|www.interviewsguru.com|The Encylopedia of Web Sites|Blogging and Earning
Labels:
.net,
asp.net,
Design Patterns,
MVC
Subscribe to:
Posts (Atom)