Background processing of DLL

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I am a learner and have a very basic question. Is there anyway that I can call a dll from a asp and return the control to the asp while the dll is processing in the back?

Since the DLL does a lot of lengthy processes, I just want to display in the browser that the request has been accepted and is under processing.

Any help would be appreciated.
Thanks.
 
Check out the System.Threading NameSpace. You can call methods in classes
which run in a different (asynchronous) thread.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

RR said:
Hi,
I am a learner and have a very basic question. Is there anyway that I can
call a dll from a asp and return the control to the asp while the dll is
processing in the back?
Since the DLL does a lot of lengthy processes, I just want to display in
the browser that the request has been accepted and is under processing.
 
Back
Top