0% found this document useful (0 votes)
62 views

Faq of

The document provides answers to common .NET and ASP.NET interview questions. It discusses the roles of inetinfo.exe, aspnet_isapi.dll, and aspnet_wp.exe in page loading, the difference between Response.Write() and Response.Output.Write(), and the page life cycle methods that are fired.

Uploaded by

yogesh_iyer
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
62 views

Faq of

The document provides answers to common .NET and ASP.NET interview questions. It discusses the roles of inetinfo.exe, aspnet_isapi.dll, and aspnet_wp.exe in page loading, the difference between Response.Write() and Response.Output.Write(), and the page life cycle methods that are fired.

Uploaded by

yogesh_iyer
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

Sponsored Links

Home > Software QA


Title: .Net - Repeated Interview question and Answers

1.Describe the role of inetinfo.exe, aspnet_isapi.dll and aspnet_wp.exe in the


page loading process ?

Ans : inetinfo.exe is the Microsoft IIS server running, handling ASP.NET


requests among other things. When an ASP.NET request is received (usually
a file with .aspx extension), the ISAPI filter aspnet_isapi.dll takes care of it by
passing the request to the actual worker process aspnet_wp.exe.

2. What’s the difference between Response.Write() and


Response.Output.Write()?
Ans : Response.Output.Write() allows you to write formatted output.

3. What methods are fired during the page load?


Ans : Init() - when the page is instantiated
Load() - when the page is loaded into server memory
PreRender() - the brief moment before the page is displayed to the user as
HTML
Unload() - when page finishes loading.

4. When during the page processing cycle is ViewState available?


Ans : After the Init() and before the Page_Load(), or OnLoad() for a control.

5. What namespace does the Web page belong in the .NET Framework class
hierarchy?
Ans : System.Web.UI.Page

6. Where do you store the information about the user’s locale?


Ans : System.Web.UI.Page.Culture

7. What’s the difference between Codebehind="MyCode.aspx.cs" and


Src="MyCode.aspx.cs"?
Ans : CodeBehind is relevant to Visual Studio.NET only.

8. What’s a bubbled event?

Ans : When you have a complex control, like DataGrid, writing an event
processing routine for each object (cell, button, row, etc.) is quite tedious.
The controls can bubble up their event handlers, allowing the main DataGrid
event handler to take care of its constituents.

9. Suppose you want a certain ASP.NET function executed on MouseOver for


a certain button. Where do you add an event handler?

Ans : Add an OnMouseOver attribute to the button. Example:


btnSubmit.Attributes.Add("onmouseover","someClientCodeHere();");

10. What data types do the RangeValidator control support?

You might also like