|
Re: What's the difference between Response.Write() and Response.Output.Write()?
Response.Output.Write() gives you String.Format-style output and the Response.Write() doesn't.
In ASP.NET the Response object is of type HttpResponse and when you say Response.Write you're really saying HttpContext.Current.Response.Write and calling one of the many overloaded Write methods of HttpResponse.
|