다음을 통해 공유


HttpCapabilitiesBase.CanRenderMixedSelects 속성

정의

브라우저에서 <option>onpick 특성이 둘 다 지정된 WML value 요소를 지원하는지 여부를 나타내는 값을 가져옵니다.

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

속성 값

Boolean

브라우저에서 onpickvalue 특성을 둘 다 지정하는 WML <option> 요소를 지원하면 true이고, 지원하지 않으면 false입니다. 기본값은 true입니다.

예제

다음 코드 예제에서는 브라우저에서 두 특성을 모두 지정 onpick value 하는 HTML <option> 요소를 지원하는지 여부를 확인하는 방법을 보여 줍니다.

<%@ 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).CanRenderMixedSelects)
        {
            labelText = "Browser supports HTML OPTION elements which specify both ONPICK and VALUE attributes.";
        }
        else
        {
            labelText = "Browser does not support HTML OPTION elements which specify both ONPICK and VALUE attributes.";
        }

        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)).CanRenderMixedSelects Then
            labelText = "Browser supports HTML OPTION elements which specify both ONPICK and VALUE attributes."
        Else
            labelText = "Browser does not support HTML OPTION elements which specify both ONPICK and VALUE attributes."
        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>

설명

CanRenderMixedSelects WML-호환 되는 모바일 디바이스에만 속성이 적용 됩니다.

onpick 값이 하이퍼링크 value 로 표시되고 특성에 포스트백에 대한 요소가 필요한 <do> 경우 false

적용 대상