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
Where is cookie used in asp.net?
What are different methods of session maintenance in asp.net?
What is OSI layer? Explain different layers.
What do you mean by authorization?
Where session id is stored?
Can you explain the importance of finalize method in .net?
What is datagrid asp.net?
What are the Types of objects in ASP
Mention the namespace that is used to include .net data provider for sql server in .net code?
If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?
Describe how passport authentication works.
Describe the disadvantage of cookies.
Can we add code files of different languages in app_code folder?
What is Difference between Production Serves and Development Servers? And Suppose, m adding/deleting C# file in a project based on the Specific Requirement. These Files are Automatically updated in Production Servers? So Which tool is needed to do This One?
What are the types of caching in asp.net?