Search code examples
asp-classic

What is the difference between the Response object and Request object?


What is the difference between the Response object and Request object in ASP?


Solution

  • Generally, the request object is going to hold information about the current user request, that is the client browser requesting a webpage from your server. The response object contains the response data that will be sent back to the user. Think of it in terms of a http request/response cycle. The objects hold the respective data.