Asp.net Asp RadioButton在不同站点的同一浏览器中以不同方式呈现列表

Asp.net Asp RadioButton在不同站点的同一浏览器中以不同方式呈现列表,asp.net,radiobuttonlist,Asp.net,Radiobuttonlist,IE11根据提供RadioButtonList的站点的不同,呈现RadioButtonList的方式也不同。 这两个网站都使用IIS7和Asp.NET4.0 RadioButtonList html如下所示: <div style="font-size:larger; font-weight:bold; text-decoration: underline; text-align:center"> Please rate the quality of service

IE11根据提供RadioButtonList的站点的不同,呈现RadioButtonList的方式也不同。 这两个网站都使用IIS7和Asp.NET4.0

RadioButtonList html如下所示:

<div style="font-size:larger; font-weight:bold; text-decoration: underline; text-align:center">
        Please rate the quality of service provided by your Project Manager/Service Delivery Team in delivering your order
</div>
<p></p>
<div style="width:100%; margin-left:120px">
        <asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="vertical" CssClass="SurveyRadioButtonList" RepeatLayout="Table">
            <asp:ListItem Text="Unacceptable" Value="Unacceptable"></asp:ListItem>
            <asp:ListItem Text="Poor" Value="Poor"></asp:ListItem>
            <asp:ListItem Text="Fair" Value="Fair"></asp:ListItem>
            <asp:ListItem Text="Good" Value="Good"></asp:ListItem>
            <asp:ListItem Text="Excellent" Value="Excellent"></asp:ListItem>
            <asp:ListItem Text="Exceeds Expectations" Value="Exceeds Expectations"></asp:ListItem>
        </asp:RadioButtonList>
</div>
.SurveyRadioButtonList label
{    
  margin-top: -3px;
}
.SurveyRadioButtonList td
{    
 border:0; 
 padding:0; 
}
这两个站点中的一个站点上的屏幕图像显示了它的外观: [嗯……由于缺乏声誉,不允许发布图像!基本上,单选按钮和标签在彼此下方垂直排列]

屏幕图像是从其他服务器渲染时的外观,如下所示: [此图显示单选按钮和标签向右斜喷,非常凌乱,没有任何东西排列。有点像RepeatLayout=“Table”根本不起作用]

请记住,两个图像都来自同一台PC(Win7)上运行的同一浏览器(IE11,不在兼容模式下),但来自两个不同的网站。两个网站都运行windows,两个网站都托管在IIS7和ASP.NET4.0上

有人有什么想法吗?我搜索得很彻底,但没有成功。
非常感谢。

Bob

你可以将图片上传到flickr或任何第三方图片网站,然后将链接添加到你的邮件中,他们是否也打了相同的补丁?由于IE 10和11的原因,自4.x以来,浏览器定义更新有补丁。一个站点可能没有补丁吗?这将改变呈现的HTML。还可以使用F12开发人员工具确保console视图中没有JS错误,并检查network选项卡以查看所有CSS和JS引用是否相同,以及是否正确加载,包括对脚本处理程序的调用。