vote up 4 vote down star

What’s the difference between Response.Write() and Response.Output.Write()?

flag

3 Answers

vote up 1 vote down

Nothing really.

But. Response.Write takes the stream in the Response.Output property. You could set another Output stream, and in that way instead of writing back to the client, maybe write to a file or something crazy. So thats there relation.

link|flag
vote up 5 vote down

There is effectively no difference, although Response.Output.Write() provides more overloads which can allow you to pass different parameters. Scott Hansleman covers it in depth.

link|flag
vote up 0 vote down

They both write to the output stream using a TextWriter (not directly to a Stream), however using HttpContext.Response.Output.Write offers more overloads (17 in Framework 2.0, including formatting options) than HttpContext.Response.Write (only 4 with no formatting options).

The HttpResponse type does not allow direct 'set' access to its output stream.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.