long running process in asp.net C#

Posted by user339323 on Stack Overflow See other posts from Stack Overflow or by user339323
Published on 2010-05-12T13:14:26Z Indexed on 2010/05/12 13:34 UTC
Read the original article Hit count: 223

Filed under:
|
|
|
|

Hello All,

I have a web application that has a long running (resource intensive) process in the code behind and the end output is a pdf file (images to pdf conversion tool)

It runs fine..and since I am on a dedicated server, it is not at all a problem with respect to resources right now.

However, I wonder that the system would reach its resource limits if, there are more than 20 users processing at a time.

I have seen services online where the user enters their email and the processes are, I suppose, queued in the background and the results emailed with the 1st in 1st out method.

Can someone please give me a start on how to implement this kind of logic in asp.net applications using C#?

Thanks a lot in advance,

Prasad.

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET