Asp.net Asp控件不在Chrome上工作

Asp.net Asp控件不在Chrome上工作,asp.net,visual-studio-2013,Asp.net,Visual Studio 2013,我在这里面临一个奇怪的问题,我的asp控件没有一个在Chrome中工作,我无法访问事件文本框不知道为什么会出现这种情况 有人能帮我吗 指令: <%@ Page Language="VB" Debug="true" EnableViewState="true" CompilationMode="Always" AutoEventWireup="false" CodeFile="Enquiry.aspx.vb" Inherits="Enquiry" %> 这是我的文本框编码:

我在这里面临一个奇怪的问题,我的asp控件没有一个在Chrome中工作,我无法访问事件文本框不知道为什么会出现这种情况

有人能帮我吗

指令:

<%@ Page Language="VB"  Debug="true" EnableViewState="true" CompilationMode="Always"  AutoEventWireup="false" CodeFile="Enquiry.aspx.vb" Inherits="Enquiry" %>

这是我的文本框编码:

<asp:TextBox ID="txtContactAddress" CssClass="TextArea" ToolTip="Enter Contact Address" runat="server" Width="380px" Height="75px" TextMode="MultiLine" ValidationGroup="Enquiry"></asp:TextBox>

我使用的是HTML5标签

<!DOCTYPE html>


<html xmlns="http://www.w3.org/1999/xhtml">

我已经包括了以上的文档类型

这些控件在IE 11中工作得很好,我还没有在任何其他IE版本中测试过,但在chrome中不工作,控件在chrome浏览器中看起来像一个图像

我正在使用Visual Studio-2013

Web.config:

<configuration>
  <system.web>
    <compilation debug="true" strict="false" explicit="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
<appSettings>
  <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
</configuration>

编辑:

<configuration>
  <system.web>
    <compilation debug="true" strict="false" explicit="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
<appSettings>
  <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
</configuration>
我已经得到了答案…!!::)万岁,但这很奇怪。。!我把控件放在一个section标签中,它的css有position:relative和z-index:600;我去掉了这个位置:相对的,很好。。!不知道为什么位置:相对禁用Asp.net控件


欢迎任何解决方案

你检查控制台了吗?控制台??你能详细说明一下吗。。!!在chrome上按f12,您将看到控制台选项卡。如果没有html5标记,它运行正常。。!!您删除了哪些标签?