发布时HTML5输入类型无法正确呈现

时间:2012-06-07 03:32:49

标签: asp.net visual-studio-2010 html5

我已经下载并安装此软件包以支持HTML5输入类型

http://support.microsoft.com/kb/2468871

以下是我的页面中的代码

<!DOCTYPE HTML>

<html>
<head runat="server">

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <input id="testEmail" type="email" />
        </div>
        <div>

        </div>
        <asp:TextBox ID="testEmailAsp" runat="server" type="email"></asp:TextBox>
        <asp:TextBox ID="testUrlAsp" runat="server" type="url"></asp:TextBox>
        <asp:TextBox ID="textBoxTest" runat="server"></asp:TextBox>
        <asp:Button ID="Button1" runat="server" Text="Button" />
    </form>
</body>
</html>

此代码是在visual studion 2010

中运行时生成的
<input name="testEmailAsp" type="text" id="testEmailAsp" type="email" />
<input name="testUrlAsp" type="text" id="testUrlAsp" type="url" />
<input name="textBoxTest" type="text" id="textBoxTest" />
<input type="submit" name="Button1" value="Button" id="Button1" />

发布到服务器时。它就像这样呈现。

<input name="testEmailAsp" type="text" id="testEmailAsp" type="email" />
<input name="testUrlAsp" type="text" id="testUrlAsp" type="url" />
<input name="textBoxTest" type="text" id="textBoxTest" />
<input type="submit" name="Button1" value="Button" id="Button1" />

如你所见。它呈现类型2时间,因此标记不正确,这使得移动设备上的input type keyboard不起作用。

2 个答案:

答案 0 :(得分:0)

我必须在服务器上安装它,我不知道

答案 1 :(得分:0)

这可能听起来很傻,但IE9支持HTML5输入类型=&#34;电子邮件&#34;,网址

http://html5test.com/