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
What is the file through which you can customize your asp.net application?
What is the default authentication mode for asp.net?
Explain About WebService
Explain the difference between singleton and single call?
How can you identify that the page is post back?
Explain the difference between inline and code behind - which is best in?
What is the difference between application state and session state in asp net?
How can we access static variable?
How can we make sure that Web API returns JSON data only?
What is a ashx file?
What is application variable in asp.net?
What is a viewbag?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
What is the difference between “Web.config” and “Machine.Config”?
What is a session http?