What?s the difference between Response.Write()
andResponse.Output.Write()?
Answer Posted / 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 |
Post New Answer View All Answers
Can we store object in viewstate?
how to retrieve property settings from xml .config file.
How can we identify that the page is post back in asp net?
What is Bundling and Minification in MVC?
List all templates of the repeater control.
What is request and response in asp.net?
What is asp net objects?
How to add DateTime Control in normal DataGrid Server Control?
What is a viewbag?
Explain about solution explorer window?
Who can consume WebAPI?
How can we implement a identity (sql server) call in an asp.net page?
What are the event handlers that we can have in global.asax file?
What is the difference between an htmlinputcheckbox control and an htmlinputradiobutton control?
Explain about secure socket layer?