Windows service-IIS issue

  • Thread starter Thread starter caldera
  • Start date Start date
C

caldera

Hi,
I want to write a windows services. But this service captures the specific asp.net web page
Request. Actually I want to capture Session of the page and last request time of this web
application. Windows service continously control request time.
How can I handle IIS thread for a specific web aplication.

Thanks for your answers.
 
caldera said:
I want to write a windows services. But this service captures the specific asp.net web page
Request. Actually I want to capture Session of the page and last request time of this web
application. Windows service continously control request time.
How can I handle IIS thread for a specific web aplication.

Sounds more like you want to write an HttpModule instead:

http://msdn.microsoft.com/library/en-us/cpguide/html/cpconhttpmodules.asp

Jens
 
Back
Top