Explain the application event handlers in ASP.NET ? Application_Start - Fired when the first user visits a page of the application or first resource is requested from the server.
Application_End - Fired when there are no more users of the application.
Application_BeginRequest - Fired at the beginning of each request to the server.
Application_EndRequest - Fired at the end of each request to the server.
Session_Start - Fired when any new user visits.
Session_End - Fired when the users stop requesting pages and their session times out.
Explain the components of web form in ASP.NET? Server controls - The server controls are Hypertext Markup Language (HTML) elements that include a runat=server attribute. These controls provide automatic state management and server-side events and respond to the user events by executing event handler on the server.
HTML controls - These controls also respond to the user events but the events processing happen on the client machine.
Data controls - Data controls allows us to connect to the database, execute command and retrieve data from database.
Explain the concept of Globalization and Localization? Globalization is used to create a multilingual application by defining culture specific features like text, date etc. Localization is used to accommodate the cultural differences in an application.