4
Answers

ASP Life Cycle

Smart    Lucky

Smart Lucky

14y
1.8k
1
Aslam-0-Alaikum


ASPNET_ISAPI.DLL
ASPNET_WP.EXE

What should stand for and what is the functionality of both.....?
can any one help...
Answers (4)
0
kalpa vachhani

kalpa vachhani

NA 34 44.3k 14y
ISAPI (Internet Server Application Program Interface) is a set of Windows program calls that let you write a Web server application that will run faster than a common gateway interface (CGI) application. A disadvantage of a CGI application (or "executable file," as it is sometimes called) is that each time it is run, it runs as a separate process with its own address space, resulting in extra instructions that have to be performed, especially if many instances of it are running on behalf of users. Using ISAPI, you create a dynamic link library (DLL) application file that can run as part of the Hypertext Transport Protocol (HTTP) application's process and address space. The DLL files are loaded into the computer when HTTP is started and remain there as long as they are needed; they don't have to be located and read into storage as frequently as a CGI application.
Existing CGI applications can be converted into ISAPI application DLLs without having to rewrite their logic. However, they do need to be written to be thread-safe so that a single instance of the DLL can serve multiple users.

A special kind of ISAPI DLL is called an ISAPI filter, which can be designated to receive control for every HTTP request. You can create an ISAPI filter for encryption or decryption, for logging, for request screening, or for other purposes.
0
Karthikeyan Anbarasan

Karthikeyan Anbarasan

NA 30.6k 3.3m 14y
Check this excellent article

http://www.codeproject.com/KB/aspnet/ASPDOTNETPageLifecycle.aspx
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 14y

We have Interview section where you can post these type of questions.


0
Krishna Garad

Krishna Garad

NA 16.5k 6.2m 14y
Check this