目标:
如果用户使用IE,我想要一部分源代码,即“在SSRS<div id="ctl31_ctl09" style="width: 100%; height: 100%; overflow: auto; ;">"
中更改为。
如果用户使用FF,Firefox仍然会使用原始源代码。
"<div id="ctl31_ctl09" style="width: 150%; height: 100%; overflow: auto; ;">"
问题:
生成原始代码后,我应该如何以及在何处启用更改源代码。
我的逻辑解决方案和 ide 将是:
1. 生成原始代码并根据
http://myserver/report
.
2.如果浏览器使用IE,将部分源代码:
"<div id="ctl31_ctl09" style="width: 100%; height: 100%; overflow: auto; ;">"
改成
"<div id="ctl31_ctl09" style="width: 150%; height: 100%; overflow: auto; ;">"
.
问题是
怎么做?
我坚信您还需要使用和更改 ReportingServices.js 中的部分代码
信息:
*我使用的是 SQL server 2008 R2 和 Visual Studio 2008 Professional。
*源代码是网络开发。