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

Answers were Sorted based on User's Feedback



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

Answer / guest

The latter one allows you to write formatted output.

Is This Answer Correct ?    53 Yes 10 No

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

Answer / rahul

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

Is This Answer Correct ?    36 Yes 5 No

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

Answer / kvnvani

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

They are used to display output text in formatted manner as
below
Response.Write() output fotmat :
Response.Write"<h1>" & iTimer & "</h1>"
Response.Output.Write() output format :
Response.Output.Write("<h2>Process running as {0}</h2>",
WindowsIdentity.GetCurrent().Name);

Is This Answer Correct ?    33 Yes 11 No

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

Answer / priya

response.output.write allows String.Format style output and
the response.write doesn't

For example : Response.Output.Write("{0:d}", "Current Date
Time is: ",DateTime.Now);

Is This Answer Correct ?    26 Yes 9 No

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

Answer / mallikarjun.b.a

Response.Write it is used to display the normal output But
Response.OutPut.write it is used to display the formated
Output

Is This Answer Correct ?    17 Yes 1 No

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

Answer / atul yadav

response.write() just writes/displays the text or string on the web page. response.output.write() formats the string in the format specified before displaying it on the web page .

Is This Answer Correct ?    4 Yes 1 No

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

Answer / suresh.gv

R.W:: It writes to the browser
R.O.W :: It writes to the file

Is This Answer Correct ?    17 Yes 25 No

Post New Answer

More ASP.NET Interview Questions

What is difference between Lambda Expression and LINQ in ASP.NET?

0 Answers   Viscus Infotech,


Describe SOA and the tenets of it?

0 Answers   Siebel,


7. Do you have reference list?

4 Answers   CMC, Hotel Jobs, Mannar Company, Qatar Petroleums, Swatz Oils,


How to save Link of a Webpage in excel sheet?

1 Answers   HCL, NIIT,


Where is the session stored?

0 Answers  






How to remove cache object in asp.net?

2 Answers   TVS,


Types of values mode can hold session state in web.config ?

1 Answers   Accenture, Parrot Systems,


How do you hide the columns?

0 Answers  


Which template must you provide, in order to display data in a Repeater control?

1 Answers  


Interface and Abstract class, inheritance, abstraction with examples. Polymorphism (difference betn overloading and overriding

2 Answers   Syntel,


What does the hotspot class in .net do?

0 Answers  


How connect data into DropDownList from Aceess Table?

1 Answers   HCL, TCS,


Categories