Help > Web Development > Reference > Scripting Objects > Response Object > Status

Response.Status Property

The Status property represents the HTTP status code returned for the request.  The status codes are defined in the HTTP specification.

Syntax
Response.Status = (string)

Parameters
string

Contains a three digit status code, optionally followed by a description.


Example
<%
Response.Status = "501 Not Implemented"
%>

Applies To
Response Object