The ASP.NET MVC is a web application framework developed by Microsoft, which implements the model–view–controller (MVC) pattern. Based on ASP.NET, ASP.NET MVC allows software developers to build a web application as a composition of three layers: Model, View and Controller.
ASP.NET questions and answers
List of interview questions and answers on ASP.NET. It is a server-side Web application framework created for producing dynamic web pages.What is ASP.NET Web Forms?
ASP.NET Web Forms is a part of the ASP.NET web application framework. It is one of the three programming models you can use to create ASP.NET web applications, the others are ASP.NET MVC and ASP.NET Web Pages.
What is the global.asax file? What events you can define there?
The global.asax file is an optional part of an ASP.NET application. It is located in the root of the web application directory structure. It cannot be directly loaded or requested by users. The global.asax declares a class derived from HttpApplication
, which provides a place to define application-wide, session-wide and request-wide events.
10 short ASP.NET WebForms questions for intermediate level
Here is the list of ten ASP.NET WebForms questions for intermediate level.
1. In which event ASP.NET WebForms controls are fully loaded?
Mainly all controls are accessible in Page_Init
event except “ViewState” because it doesn’t fully loaded during this event. The Page_Load
event guarantees that all the controls are fully loaded and ready to use.
What is ASP.NET?
ASP.NET is a server-side web application framework designed by Microsoft as part of .NET Framework for web development to produce dynamic web sites, web applications and web services. Actually, Microsoft defines ASP.NET as "web development model", which offers three approaches for creating web applications: ASP.NET Web Forms, ASP.NET MVC, and ASP.NET Web Pages.