ASP Response.Flush() flushes partial data
I am developing a web app with an ASP server side and I use an iframe for data push. An ASP handler flushes every once in a while some javascript to the iframe: context.Response.Write("<script language='javascript'>top.update('lala');</script>"); context.Response.Flush(); My problem is that sometimes, when I receive the data, I don't get the full text. For example I will receive this : <script language='javascript'>update('lala');</ Unfortunately this prevents the javascript code from being executed if no other data is to come during the next second or so. One workaround I have is to have a