7

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

rcollyer
  • 10,047
  • 4
  • 45
  • 70

4 Answers4

4

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.

rcollyer
  • 10,047
  • 4
  • 45
  • 70
Dexter
  • 17,257
  • 4
  • 42
  • 52
2

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.

rcollyer
  • 10,047
  • 4
  • 45
  • 70
Jared
  • 1,937
  • 14
  • 14
0

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.

rcollyer
  • 10,047
  • 4
  • 45
  • 70
Jesper Blad Jensen
  • 2,671
  • 16
  • 15
0

Response.Output.Write(): It is used to display any type of data like int, date, string etc. i.e. It displays the formatted output.

Response.Write(): To display only string type of data i.e. It's can't display formatted output().

To display formatted output from Response.Write() you can write:

Response.Write(String.Format("    ",___));
alecxe
  • 414,977
  • 106
  • 935
  • 1,083
avi
  • 1