Multiple choice

Which command displays characters to an HTML page?

  1. Response.write

  2. Response.end

  3. response.end

  4. None of these

Reveal answer Fill a bubble to check yourself
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.