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

Skill/Topic: Beginner
A) Response.Output.Write() allows you to flush output
B) Response.Output.Write() allows you to buffer output
C) Response.Output.Write() allows you to write formatted output
D) Response.Output.Write() allows you to stream output

Showing Answers 1 - 8 of 8 Answers

balu.g

  • Feb 14th, 2006
 

Response.write - it writes the text stream
Response.output.write - it writes the HTTP Output Stream.


Response.Output.Write() allows you to write formatted output

  Was this answer useful?  Yes

MAndeep Singh

  • Apr 27th, 2015
 

C) Response.Output.Write() allows you to write formatted output

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions