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
Why asp.net is better than php?
What are demand-paging and pre-paging?
Hi All, Im an MCA holder with 3+ years of experience in asp.net. Now i want to move to some good government job. I have no idea about different categories of exams held & which one can be applicable for my education background. I have done B.A with MCA. Please help me out with your valuable suggestions. I would be very grateful. Thanks Anuj
What is state management in asp.net with example?
How can we update records in gridview?Is there any appropriate code for it?
What is fulltrust?
What is query string in asp.net?
Explain the advantages of asp.net.
How do you initiate validation on the server manually? What are two situations when you might you want to do that?
What are the main differences between asp and asp.net?
Which namespace is used by ado.net?
Define globalization and localization.
In which event are the controls fully loaded?
How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?
Can I have a unique key as foreign key?