Which command displays characters to an HTML page?
-
Response.write
-
Response.end
-
response.end
-
None of these
A
Correct answer
Explanation
In classic ASP, the Response.Write method outputs text or HTML content to the client's browser. Response.End terminates script execution and sends output. The Write method is the standard way to dynamically generate page content during server-side processing.