HttpResponse.StatusCode 屬性

定義

取得或設定傳回至用戶端的輸出之 HTTP 狀態碼。

public:
 property int StatusCode { int get(); void set(int value); };
public int StatusCode { get; set; }
member this.StatusCode : int with get, set
Public Property StatusCode As Integer

屬性值

整數,代表傳回至用戶端的 HTTP 輸出的狀態。 預設值為 200 (OK)。 如需有效狀態碼的清單,請參閱 HTTP 狀態碼

例外狀況

StatusCode 在 HTTP 標頭送出之後被設定。

範例

下列範例會檢查輸出資料流程的狀態碼。 如果狀態碼不等於 200,則會執行其他程式碼。

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);
    }
}

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

適用於

另請參閱