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(正常)。 有关有效状态代码的列表,请参阅 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