다음을 통해 공유


HttpCapabilitiesBase.SupportsCacheControlMetaTag 속성

정의

브라우저에서 HTML cache-control 요소의 http-equiv 특성에 대해 <meta> 값을 지원하는지 여부를 나타내는 값을 가져옵니다.

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

속성 값

Boolean

브라우저에서 HTMLtrue 요소의 cache-control 특성에 대해 http-equiv 값을 지원하면 <meta> 이고, 지원하지 않으면 false입니다. 기본값은 true입니다.

예제

다음 코드 예제에서는 브라우저에서 HTML <meta> 요소의 특성 값을 cache-control http-equiv 지원하는지 여부를 확인하는 방법을 보여 줍니다.

<%@ 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).SupportsCacheControlMetaTag)
        {
            labelText = "Browser supports the CACHE-CONTROL value for the HTTP-EQUIV attribute of HTML META elements.";
        }
        else
        {
            labelText = "Browser does not support the CACHE-CONTROL value for the HTTP-EQUIV attribute of HTML META elements.";
        }

        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)).SupportsCacheControlMetaTag Then
            labelText = "Browser supports the CACHE-CONTROL value for the HTTP-EQUIV attribute of HTML META elements."
        Else
            labelText = "Browser does not support the CACHE-CONTROL value for the HTTP-EQUIV attribute of HTML META elements."
        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>

설명

cache-control HTML <meta> 요소의 특성 값을 http-equiv 사용하면 웹 페이지를 포함하는 다운로드한 콘텐츠의 클라이언트 캐싱을 제어할 수 있습니다. 다음 HTML 조각은 예제를 보여줍니다.

<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"/>  

true페이지의 요소에 이 태그를 <head> 포함하면 브라우저에서 서버의 콘텐츠를 다시 로드해야 합니다.

서버 false컨트롤 어댑터가 아직 없는 링크 URL 값에 기본 쿼리 문자열(__ufps=``uniquefilepathsuffix)을 추가하면 이렇게 하면 브라우저가 서버에서 콘텐츠를 다시 로드합니다.

이 속성은 SupportsCacheControlMetaTag 해당하는 HTTP 헤더 양식에도 적용됩니다.

CACHE-CONTROL: NO-CACHE  

적용 대상