1<% @Page Language="C#" %>
2<%
3	//
4	// This test forces chunked mode by calling flush
5	// Then writes 9 bytes in two separate calls, which
6	// should be sent as a single chunk
7	//
8	Response.Output.Write ("hello");
9	Response.Flush ();
10	Response.Output.Write ("world");
11	Response.Output.Write ("oops");
12	Response.Flush ();
13%>