Crystal Report v10.5 toolbar not visible on Firefox but visible on IE and Chrome(Crystal Report v10.5 工具栏在 Firefox 上不可见,但在 IE 和 Chrome 上可见)
问题描述
我正在使用带有 Visual Studio 2008 的 Crystal Report v10.5 来开发 Crystal Reports.我面临的问题是工具栏在 Firefox 上不可见,但在 IE 和 Chrome 上可见.我在开发机器和生产服务器上都安装了相同的版本,即 Crystal report v10.5.我的开发机器是Windows 7 32bit,生产机器是Windows 2008 64bit.
I am using crystal report v10.5 with visual studio 2008 to develop crystal reports.The problem I am facing is with the toolbar which is not visible on Firefox but it is visible on IE and Chrome. I have installed same version on both development machine and on production server which is Crystal report v10.5. My development machine is Windows 7 32bit and production is Windows 2008 64bit.
我尝试过许多论坛上提到的解决方案,例如
I have tried solutions mentioned on numerous forums such as
- 将aspnet_client"文件夹从C:Inetpubwwwroot"复制到C:Inetpubwwwrootyour-website-name".
- 在您的网站中创建一个新的虚拟目录并将其指向C:/Inetpub/wwwroot/aspnet_client".
- 应用程序池将更改为经典"而不是集成".
- 将您的应用程序的应用程序池设置为在 LOCAL SERVICE 权限下运行.
但我仍然无法在 Firefox 上显示工具栏.
But still I am not able to show toolbar on Firefox.
配置:
- Visual Studio 2008
- .Net 框架 3.5
- 运行时 10.5 的水晶报告
- Windows Server 2008 64 位
谁能指出我正确的方向?
Can anyone point me to the right direction?
编辑 - 我最近从 Windows 2003 升级到 Windows 2008,CR 10.5 的相同版本在没有上述任何解决方案的情况下按预期工作.
Edit- I recently upgraded from Windows 2003 to Windows 2008 and the same version for CR 10.5 was working as expected without any mentioned solutions above.
谢谢
推荐答案
需要在aspx文件的page指令中添加ClientTarget="uplevel"
.
You need to add ClientTarget="uplevel"
to the page directive of the aspx file.
<%@ Page ClientTarget="uplevel" ... %>
这篇关于Crystal Report v10.5 工具栏在 Firefox 上不可见,但在 IE 和 Chrome 上可见的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Crystal Report v10.5 工具栏在 Firefox 上不可见,但在 IE 和 Chrome 上可见
基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30