Share via


HttpCapabilitiesBase.SupportsInputIStyle 屬性

定義

取得值,指出瀏覽器是否支援 HTML istyle 項目的 <input> 屬性。

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

屬性值

如果瀏覽器支援 HTML <input> 項目的 istyle 屬性,則為 true;否則為 false。 預設為 false

範例

下列程式碼範例示範如何判斷瀏覽器是否支援 istyle HTML <input> 元素的 屬性。

<%@ 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).SupportsInputIStyle)
        {
            labelText = "Browser supports the ISTYLE attribute of HTML INPUT elements.";
        }
        else
        {
            labelText = "Browser does not support the ISTYLE attribute of HTML INPUT 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)).SupportsInputIStyle Then
            labelText = "Browser supports the ISTYLE attribute of HTML INPUT elements."
        Else
            labelText = "Browser does not support the ISTYLE attribute of HTML INPUT 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>

備註

屬性 SupportsInputMode 僅適用于與 i 模式相容的裝置。

屬性 istyle 用於在與 i 模式相容的瀏覽器上設定文字輸入欄位的輸入樣式。

適用於