Posts tagged Interview Questions – ASP.NET

Question

ASP.NET 2.0 Interview Questions #3

0

Collected from the internet: 1.         Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process. inetinfo.exe is theMicrosoft 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 tothe actual worker process aspnet_wp.exe. 2.         What’s the difference between Response.Write() andResponse.Output.Write()? Response.Output.Write() allows you to write formatted output.  3.         What methods are fired during the page load? Init() – when the page is instantiated Load() More >

Question

ASP.NET 2.0 Interview Questions #2

1

Collected from the internet:

Q1. What is Dynamic Compilation? A1. When an asp.net page is compiled for the first time, a copy of the compiled assembly is saved in the Temporary ASP.NET Files folder. This compiled page is of the type system.web.ui.page and includes all contents of the page (including html & scripts). When it is compiled a second time, a precompiled version is accessed from this location, thus speeding up the process. In case the source is changed, the assembly in the Temporary ASP.NET Files folder gets More >

Question

ASP.NET 2.0 Interview Questions #1

0

Collected from the internet:

Q1.what are the new features in ASP.NET 2.0? A1. ASP.NET is a programming framework built on the common language runtime that can be used on a server to build powerful Web applications. The first version of ASP.NET offered several important advantages over previous Web development models. ASP.NET 2.0 improves upon that foundation by adding support for several new and exciting features in the areas of developer productivity, administration and management, extensibility, and performance. 1) New Server Controls: ASP.NET 2.0 introduces many new server controls More >

Go to Top