我在asp.net VS2008一个简单的页面,在IE 9运行时,在兼容性视图按钮可见,点击后网页始终在IE7兼容模式下运行。
为什么页面不确实在IE8上运行,当点击兼容性视图按钮? 我们甚至有IE8兼容性视图?
下面是HTML代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" Text="Testing"></asp:TextBox>
</div>
</form>
</body>
</html>