HttpResponse.StatusCode Property
.NET Framework (current version)
Gets or sets the HTTP status code of the output returned to the client.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Int32An Integer representing the status of the HTTP output returned to the client. The default value is 200 (OK). For a listing of valid status codes, see Http Status Codes.
| Exception | Condition |
|---|---|
| HttpException | StatusCode is set after the HTTP headers have been sent. |
The following example checks the status code of the output stream. If the status code is not equal to 200, additional code is executed.
.NET Framework
Available since 1.1
Available since 1.1
Show: