开发者

Background process in asp.net

Thanks in Advance for reading and answer this question.

I got button in asp 2.0 that will process something BIG. It will take sometime to finish (more than 30,000 comparison) and I want to know if the browser says that it lost the comunicat开发者_如何学运维ion with the server, the server will finish the process?


You probably want to modify your architecture so that the HTTP response is not dependent on the processing finishing within the timeout period. It sounds as if you are not going to tell the user anything based on the results of the calculation anyway based on the question. There are different methods you could use, but most involve writing a message to a queue, and then having a separate process, like a Windows Service monitor that queue and do the long running work separately.


You should not execute this button live on the site but instead spawn a thread server side.

You could use AJAX to tell the services to start the comparison and listen for the answer later on.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜