HttpResponse.StatusCode 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定傳回至用戶端的輸出之 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