In: Computer Science
What method is used to produce output from an ASP.NET document?
HttpResponse.Write method is used to write information to an HTTP response output stream.
"Write" method can be used to write character,Object, String, Character Array to an output stream
For Example:(ASP.NET c#)
<%
string s = "Web Applications";
Response.Write(s);
// Write an object
object obj =
(object)12;
Response.Write(obj);
%>