image\cslogo3d1.gif

ASP Response Object Status Property

The Status property sets the value of the status line returned by the server. Status values are defined in the HTTP specification.

Syntax: ASP Response Object Status Property

Response.Status = StatusDescription

Parameters: ASP Response Object Status Property

StatusDescription

A string that contains a three-digit status code and a brief explanation of that status. For example, "310 Move Permanently".

Remarks: ASP Response Object Status Property

Use this property to modify the status line returned by the server.

Examples: ASP Response Object Status Property

The following example sets the response status:

Response.Status = "401 Unauthorized"

Copyright 2001 Sun Microsystems, Inc. All rights reserved. Legal Notice.