The Status property specifies the value of the status line returned by the server. Status values are defined in the HTTP specification.
Response.Status = StatusDescription
StatusDescription | A string that consists of both a three-digit number that indicates a status code and a brief explanation of that code. For example, 310 Move Permanently. |
Use this property to modify the status line returned by the server.
The following example sets the response status.
<% Response.Status = "401 Unauthorized" %>