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
1.what is the application pool. 2.what is the HttpModile and Http Handler. 3.C# 3.0 Features ? 4.Anonoymous Type,methopd and claas in 3.0? 5.difference between statsic and const ? 6.session vs application 7.state management clint side and server side ? 8.Genric list 9.c# 3.0 vs 3.5
Define session in asp.net.
What is the use of placeholder control?
How can we provide the WebParts control functionality to a server control?
Explain the main function of razor in asp.net? : asp.net mvc
Explain the steps to be followed to use passport authentication.
Explain swagger components.
What is use of Master Page in ASP.NET web pages?
What are web beacons used for?
How does output caching work in ASP.NET?
what cut off mark for po's,what questions they asked for interview?
How to handle errors in Web API?
Which library is used by the testers and developers to develop automated tests and create testing tools?
What does asp in asp.net stand for?
What are the merits and demerits of viewstate?