Hi,
I am developing a website which will allow users to click the <RUN> button to execute some reports. These reports are public functions inside a DLL created earlier, and function takes around a few minutes to a few hours to finish.
Should I use the Asynchronous HTTP Handler to run the functions? If the user close the web page, I wonder if the thread will continue to run, and how reliable it is. If not, I guess I will wrap the DLL inside a windows service which will handle the calls from the web request.
cheers