What is the main use of Response.Output.Write()?
Answers were Sorted based on User's Feedback
Answer / psetty
To write formatted output Response.Output.Write() function
is used.
| Is This Answer Correct ? | 23 Yes | 3 No |
Answer / varun
In ASP.NET the Response object is of type HttpResponse and
when you say Response.Write you're really saying
(basically) HttpContext.Current.Response.Write and calling
one of the many overloaded Write methods of HttpResponse.
Response.Write then calls .Write() on it's internal
TextWriter object:
public void Write(object obj){ this._writer.Write(obj);}
HttpResponse also has a Property called Output that is of
type, yes, TextWriter, so:
public TextWriter get_Output(){ return this._writer; }
Which means you can to the Response whatever a TextWriter
will let you. Now, TextWriters support a Write() method
ala String.Format, so you can do this:
Response.Output.Write("Scott is {0} at
{1:d}", "cool",DateTime.Now);
But internally, of course, this this is happening:
public virtual void Write(string format, params object[]
arg)
{
this.Write(string.Format(format, arg));
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / varun
The difference between Response.Write() and
Response.Output.Write() in ASP.NET. The short answer is
that the latter gives you String.Format-style output and
the former doesn't. The long answer follows.
| Is This Answer Correct ? | 9 Yes | 2 No |
What r all the controls in ASP.NET ?
Is asp.net a language?
What is a Metadata?
What are the security types in asp.net?
which one is more flexibility and reliability and durability asp.net (VS)php which one is best and which one we do nice to create dynamic websites
What is page request in asp.net?
What is Fragment Caching in ASP.NET?
2 Answers MCN Solutions, pspl, Wipro,
How many types is controls is there in Asp.Net?If it means what are types of custom controls?Explain about user controls,Web server controls,Hrml server controls?
How do you implement sql caching in asp.net?
How do you perform validations ?
What is a 1x1 pixel?
How will you load dynamic assembly?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)