//在网页中引用此文件之前,应该先引用CreateControl.js //document.write(""); //插入一个报表对象,用来判断插件是否已经安装,或是否需要安装更新版本 //此函数应该在网页的中调用,具体请看例子 ReportHome.htm 中的用法 function Install_InsertReport() { var typeid; if( _gr_isIE ) typeid = 'classid="clsid:25240C9A-6AA5-416c-8CDA-801BBAF03928" '; else typeid = 'type="application/x-grplugin-report" '; typeid += gr_CodeBase; document.write(''); document.write(''); } //用来判断插件是否已经安装,或是否需要安装更新版本。如果需要安装,则在网页中插入安装相关的文字内容 //如果插件已经安装且也不要更新,则返回 true,反之为 false。 //此函数应该在网页的开始位置处调用,具体请看例子 ReportHome.htm 中的用法 function Install_Detect() { var _ReportOK = document.getElementById("_ReportOK"); if (_ReportOK.Register == undefined) //if ((_ReportOK == null) || (_ReportOK.Register == undefined)) { document.write('
'); document.write(' 此网站需要安装 锐浪报表插件 才能保证其正常运行
'); if( _gr_isIE ) document.write(' 如浏览器的顶部或底部出现提示条,左键点击提示条并运行加载项,按此方式安装最简便
'); document.write('点击此处下载锐浪报表插件安装包
'); document.write('锐浪报表插件安装后,点击此处 重新加载此网站'); document.write('
'); return false; } else if ((_ReportOK.Utility.ShouldUpdatePlugin == undefined) || _ReportOK.Utility.ShouldUpdatePlugin(gr_Version) == true) //检查是否应该下载新版本程序 { document.write('
'); document.write(' 此网站需要升级安装 锐浪报表插件 才能保证其正常运行
'); document.write('点击此处下载锐浪报表插件安装包
'); document.write('插件安装时必须关闭网页窗口,点击本网页窗口的关闭按钮进行关闭,安装完成后再重新打开本网页
'); document.write('如安装中出现“不能打开要写入的文件...”的提示时,请将网页窗口关闭,然后点击“重试”按钮继续安装'); document.write('
'); return false; } return true; }