而在另一个版本为7的IIS服务器中却没有

而在另一个版本为7的IIS服务器中却没有

本文介绍了为什么在一个IIS服务器中存在设计问题,包括Crystal Report(版本10.2),而在另一个版本为7的IIS服务器中却没有?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么在一个IIS服务器中存在设计问题但在另一个版本为7的IIS服务器中没有?

服务器使用的是IE 11浏览器,为了兼容,我们将其渲染设置为IE 5 in web.config如下:

Why there is design Issues in one IIS server but not in another IIS server with version 7 ?
The server is with IE 11 browser and to be compatibile we have set its rendering as IE 5 in web.config as below:

<system.webServer>
    <httpProtocol>
      <customHeaders>
        <clear />
        <add name="X-UA-Compatible" value="IE=5; />
      </customHeaders>
    </httpProtocol>
  </system.webServer>







但在一台服务器上所有设计都是完美的,而其他问题包括版本10.2的水晶报告。我们正在使用Visual Studio 2005.




But In one server all design is perfect while in the other issues are there including crystal reports with Version 10.2. We are using Visual Studio 2005.

推荐答案


这篇关于为什么在一个IIS服务器中存在设计问题,包括Crystal Report(版本10.2),而在另一个版本为7的IIS服务器中却没有?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 22:43