다음을 통해 공유


HttpCapabilitiesBase.SupportsRedirectWithCookie 속성

정의

브라우저에서 리디렉션 시 쿠키를 지원하는지 여부를 나타내는 값을 가져옵니다.

public:
 virtual property bool SupportsRedirectWithCookie { bool get(); };
public virtual bool SupportsRedirectWithCookie { get; }
member this.SupportsRedirectWithCookie : bool
Public Overridable ReadOnly Property SupportsRedirectWithCookie As Boolean

속성 값

Boolean

브라우저에서 리디렉션 시 쿠키를 지원하면true 이고, 지원하지 않으면 false입니다. 기본값은 true입니다.

예제

다음 코드 예제에서는 브라우저 리디렉션에 쿠키를 지원 하는지 여부를 확인 하는 방법을 보여 줍니다.

<%@ 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. 브라우저 3.2에서는 Redirect Web.config 섹션의 HttpBrowserCapabilities SupportsRedirectWithCookie 속성이 false명시적으로 설정되지 않은 한 Cookieless 개체의 속성 SessionState 값이 있는 것처럼 동작합니다true.

ASP.NET 1.1에서는 이 설정에 대한 옵션이었 true 거나false, 그렇지만 ASP.NET 2.0에서는 선택 항목이 확장 AutoDetect 되고 이제 기본 설정이 됩니다. 웹 애플리케이션에 cookieless 특성을 <sessionState> 부울 값으로 설정 하는 Web.config 파일의 섹션 Redirect 이 브라우저에 대 한 예상 대로 작동 해야 합니다.

적용 대상