Response.Output.Write() allows you to write formatted output, such as
CODE
Response.Output.Write("<h2>Once again running as {0}</h2>", WindowsIdentity.GetCurrent().Name);
Also,
Response.Output.Write() writes to the HTTP output stream whereas
Response.Write writes to a text stream then writes out the output.
Hope that helps