How to send data many times to web browser in response to one request?
Posted
by robert_d
on Stack Overflow
See other posts from Stack Overflow
or by robert_d
Published on 2010-05-22T21:09:11Z
Indexed on
2010/05/22
21:20 UTC
Read the original article
Hit count: 125
c#
|asp.net-mvc-2
I have a form on my web page, it allows to submit many queries to my website, every query is on a separate line in TextArea. Because waiting for all queries to complete is too long I would like to update the web page after every query completes - send result of one query to a web browser, new result should be appended to old results that are already on the web page.
How to do this in ASP.NET MVC 2?
I will be grateful for helpful responses.
© Stack Overflow or respective owner