Write Method
Syntax
Context.Response.Write as V (BodyData as C)
Context.Response.Write as V (BodyData as B)
Context.Response.Write as V (BodyData as N)
Context.Response.Write as V (BodyData as L)
Arguments
- BodyDataCharacter Binary Numeric Logical
The data to write to the output stream. The data to write can be character, binary, numeric, or logical.
Description
Write a character, binary, number or logical to output stream
Discussion
Context.Response.Write() Write a character, binary, number or logical to the response's output stream. Character and Binary types are written directly to the response's output stream. Number and logical type values are converted to character before being written to the output stream.