Files
linux-packaging-mono/mcs/class/System.Web/Test/standalone/response/t4.aspx

10 lines
223 B
Plaintext
Raw Normal View History

<% @Page Language="C#" %>
<%
Response.Output.Write ("hello");
Response.Flush ();
Response.Buffer = false;
Response.Output.Write ("world");
Response.Buffer = true;
Response.Output.Write ("oops");
Response.Flush ();
%>