HttpCapabilitiesBase.SupportsRedirectWithCookie 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示浏览器在重定向时是否支持 Cookie。
public:
virtual property bool SupportsRedirectWithCookie { bool get(); };
public virtual bool SupportsRedirectWithCookie { get; }
member this.SupportsRedirectWithCookie : bool
Public Overridable ReadOnly Property SupportsRedirectWithCookie As Boolean
属性值
如果浏览器在重定向时支持 Cookie,则为 true
;否则为 false
。 默认值为 true
。
示例
下面的代码示例演示如何确定浏览器是否支持重定向上的 Cookie。
<%@ page language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void Page_Load(Object Sender, EventArgs e)
{
CheckBrowserCaps();
}
void CheckBrowserCaps()
{
String labelText = "";
System.Web.HttpBrowserCapabilities myBrowserCaps = Request.Browser;
if (((System.Web.Configuration.HttpCapabilitiesBase)myBrowserCaps).SupportsRedirectWithCookie)
{
labelText = "Browser supports cookies on redirection.";
}
else
{
labelText = "Browser does not support cookies on redirection.";
}
Label1.Text = labelText;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Browser Capabilities Sample</title>
</head>
<body>
<form runat="server" id="form1">
<div>
Browser Capabilities:
<p/><asp:Label ID="Label1" Runat="server" />
</div>
</form>
</body>
</html>
<%@ page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
CheckBrowserCaps()
End Sub
Function CheckBrowserCaps()
Dim labelText As String = ""
Dim myBrowserCaps As System.Web.HttpBrowserCapabilities = Request.Browser
If (CType(myBrowserCaps, System.Web.Configuration.HttpCapabilitiesBase)).SupportsRedirectWithCookie Then
labelText = "Browser supports cookies on redirection."
Else
labelText = "Browser does not support cookies on redirection."
End If
Label1.Text = labelText
End Function 'CheckBrowserCaps
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Browser Capabilities Sample</title>
</head>
<body>
<form runat="server" id="form1">
<div>
Browser Capabilities:
<p/><asp:Label ID="Label1" Runat="server" />
</div>
</form>
</body>
</html>
注解
使用 UP。浏览器 4.1 或 UP。Browser 3.2,该方法Redirect的行为就像对象false
属性HttpBrowserCapabilities的值SupportsRedirectWithCookie一样,除非Cookieless已显式设置为true
Web.config节中的SessionState属性。
在 ASP.NET 1.1 中,此设置的选项为true
或false
,但对于 ASP.NET 2.0,选项将展开,现在是AutoDetect默认设置。 如果 Web 应用程序具有 cookieless
设置为布尔值Web.config文件中节的属性 <sessionState>
, Redirect 则应按预期运行这些浏览器。