Gets or sets the HTTP status code of the output returned to the client.
Assembly: System.Web (in System.Web.dll)
Syntax . . :: . Int32
An 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.
Public Property StatusCode As Integerpublic int StatusCode { get; set; }public:
property int StatusCode {
int get ();
void set (int value);
}member StatusCode : int with get, set
Property Value
Type: SystemAn 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.
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
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);
}
}
Platforms
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.