Asp.Net Interview Questions and Answers for Freshers - 3

Question: 11

What is a Page Life Cycle of an ASP.Net page?

There are various stages described as under.

Init

LoadViewState

LoadPostBackData

Load

RaisePostBackDataChangedEvent

RaisePostBackEvents

Pre-Render

SaveViewState

Render

Unload

Question: 12

What method do you use to explicitly kill a user’s Session?

HttpContext.Current.Session.Abandon ().

Question: 13

What are all the types of data types available in Asp.Net?

Framework specific data type

Language specific data type

Question: 14

What are the standard event handler parameters for ASP.NET pages?

The standard parameter list is (Sender as Object, e as EventArgs).

Question: 15

What are three programmatic improvements of ASP.NET over ASP?

Ease of deployment

Improved session state and

The use of code declaration blocks

Related Questions