.Net/Flex: How to read partial results from URLRequest?
问题 I'm working on a batch process script that's executed from Flex. The batch script is in a .aspx Page and returns partial results through the following class: public class ResponseLogger { private HttpResponse _response; public ResponseLogger(HttpResponse response) { this._response = response; } public void Start() { _response.Clear(); _response.ContentType = "text/plain"; _response.ContentEncoding = System.Text.Encoding.GetEncoding("ISO-8859-1"); } public void End() { _response.End(); }