2007-01-30 Adar Wesley <adarw@mainsofot.com>
[mono.git] / mcs / class / System.Web / Test / standalone / response / t2.aspx
1 <% @Page Language="C#" %>
2 <%
3         //
4         // This test sets buffering to false and writes
5         // which should trigger a chunked response
6         //
7         
8         Response.Buffer = false;
9         Response.Output.Write ("hello");
10 %>