What’s the difference between Response.Write() andResponse.Output.Write()? with example

Response.write - it writes the text stream
Response.output.write - it writes the HTTP Output Stream.

Response.Write is used to display output text in formatted manner as below

Response.Write "

" & iTimer & "

"

Response.Output.Write("

Process running as {0}

",
WindowsIdentity.GetCurrent().Name);

No comments:

Post a Comment