What is the main use of Response.Output.Write()?

Answers were Sorted based on User's Feedback



What is the main use of Response.Output.Write()?..

Answer / psetty

To write formatted output Response.Output.Write() function
is used.

Is This Answer Correct ?    23 Yes 3 No

What is the main use of Response.Output.Write()?..

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

What is the main use of Response.Output.Write()?..

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 is the main use of Response.Output.Write()?..

Answer / bhuuuuuuuu

IT is all useless

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

what is shared assembly?

2 Answers   Microsoft,


I am using ASP.Net 2.0. I added the following code in button_Click page. but 'PreviousPage' is not taking as a keyword. It throughs an error. Page Poster = this.PreviousPage; TextBox txtNewTest = (TextBox)Poster.FindControl("txtTest"); sDisplay = txtNewTest.Text; Response.Write(sDisplay); The following is the Error Message: 'controls_LoginMain' does not contain a definition for 'PreviousPage'

2 Answers  


What is asp net objects?

0 Answers  


What tag do you use to add a hyperlink column to the DataGrid?

2 Answers   Siebel Systems,


What is an Interface and What is an Abstract Class?

3 Answers  






In a webpage if i want to give access to only half page ,then what should i do?

3 Answers  


Which method do you invoke on the DataAdapter control to load your generated dataset with data?

2 Answers   Siebel Systems,


Using Statement usage in C#

2 Answers  


By default, Web API sends HTTP response with which of the following status code for all uncaught exception?

0 Answers  


Name the application folders present in asp.net 2.0?

1 Answers  


What does this do? sn -t foo.dll

3 Answers  


What are the new navigation controls in asp.net 2.0?

0 Answers  


Categories