%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/985914/root/data/old/usr/lib/xsp/test/1.1/handlers/
Upload File :
Create Path :
Current File : //proc/985914/root/data/old/usr/lib/xsp/test/1.1/handlers/chunked.ashx

<%@ WebHandler Language="c#" class="XSPTest.ChunkedTest" %>

using System;
using System.Web;

namespace XSPTest
{
	public class ChunkedTest : IHttpHandler
	{
		public void ProcessRequest (HttpContext context)
		{
			HttpResponse response = context.Response;
			for (int i = 0; i < 10; i++) {
				string msg = new string ((char) (i + 'a'), 10000);
				response.Output.WriteLine (msg);
				response.Flush ();
			}
		}

		public bool IsReusable {
			get { return true; }
		}
	}
}


Zerion Mini Shell 1.0