IIS Workerthread

  • Thread starter Thread starter volker
  • Start date Start date
V

volker

Hello!

While IIS (+ .net 20 ) is running a workerthread shold select data in
background permanently.

How can iI do this?

V.
 
start the thead in application_start. some notes

1) normally the app domain is unloaded after unuse - this will shutdown the
thread
2) a recycle can cause two threads to be running as the old appdoamin will
be still runing, while the new one is loaded.
3) application start will not fire until the first web request hit the site.

-- bruce (sqlwork.com)
 
Back
Top