.NET Framework Class Library
HttpResponse.StatusCode Property
Gets or sets the HTTP status code of the output returned to the client.
Assembly: System.Web (in System.Web.dll)
Syntax
Visual Basic
Public Property StatusCode As Integer
C#
public int StatusCode { get; set; }
Visual C++
public: property int StatusCode { int get (); void set (int value); }
F#
member StatusCode : int with get, set
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.
Exceptions
| Exception | Condition |
|---|---|
| HttpException |
StatusCode is set after the HTTP headers have been sent. |
Examples
The following example checks the status code of the output stream. If the status code is not equal to 200, additional code is executed.
Visual Basic
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) ' Show success or failure of page load. If Response.StatusCode <> 200 Then Response.Write("There was a problem accessing the web resource." & _ "<br />" & Response.StatusDescription) End If End Sub
C#
protected void Page_Load(object sender, EventArgs e) { // Show success or failure of page load. if (Response.StatusCode != 200) { Response.Write("There was a problem accessing the web resource" + "<br />" + Response.StatusDescription); } }
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also