提交代码
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,224 @@
|
||||
// 请勿修改,否则可能出错
|
||||
var userAgent = navigator.userAgent,
|
||||
rMsie = /(msie\s|trident.*rv:)([\w.]+)/,
|
||||
rFirefox = /(firefox)\/([\w.]+)/,
|
||||
rOpera = /(opera).+version\/([\w.]+)/,
|
||||
rChrome = /(chrome)\/([\w.]+)/,
|
||||
rSafari = /version\/([\w.]+).*(safari)/;
|
||||
var browser;
|
||||
var version;
|
||||
var ua = userAgent.toLowerCase();
|
||||
function uaMatch(ua) {
|
||||
var match = rMsie.exec(ua);
|
||||
if (match != null) {
|
||||
return { browser : "IE", version : match[2] || "0" };
|
||||
}
|
||||
var match = rFirefox.exec(ua);
|
||||
if (match != null) {
|
||||
return { browser : match[1] || "", version : match[2] || "0" };
|
||||
}
|
||||
var match = rOpera.exec(ua);
|
||||
if (match != null) {
|
||||
return { browser : match[1] || "", version : match[2] || "0" };
|
||||
}
|
||||
var match = rChrome.exec(ua);
|
||||
if (match != null) {
|
||||
return { browser : match[1] || "", version : match[2] || "0" };
|
||||
}
|
||||
var match = rSafari.exec(ua);
|
||||
if (match != null) {
|
||||
return { browser : match[2] || "", version : match[1] || "0" };
|
||||
}
|
||||
if (match != null) {
|
||||
return { browser : "", version : "0" };
|
||||
}
|
||||
}
|
||||
var browserMatch = uaMatch(userAgent.toLowerCase());
|
||||
if (browserMatch.browser) {
|
||||
browser = browserMatch.browser;
|
||||
version = browserMatch.version;
|
||||
}
|
||||
//document.write(browser);
|
||||
/*
|
||||
谷歌浏览器事件接管
|
||||
*/
|
||||
function OnComplete2(type,code,html)
|
||||
{
|
||||
//alert(type);
|
||||
//alert(code);
|
||||
alert(html);
|
||||
alert("SaveToURL成功回调");
|
||||
}
|
||||
function OnComplete(type,code,html)
|
||||
{
|
||||
//alert(type);
|
||||
//alert(code);
|
||||
alert(html);
|
||||
alert("BeginOpenFromURL成功回调");
|
||||
}
|
||||
function OnComplete3(str,doc)
|
||||
{
|
||||
TANGER_OCX_OBJ.activeDocument.saved=true;//saved属性用来判断文档是否被修改过,文档打开的时候设置成ture,当文档被修改,自动被设置为false,该属性由office提供.
|
||||
// TANGER_OCX_OBJ.SetReadOnly(true,"");
|
||||
//TANGER_OCX_OBJ.ActiveDocument.Protect(1,true,"123");
|
||||
//获取文档控件中打开的文档的文档类型
|
||||
switch (TANGER_OCX_OBJ.doctype)
|
||||
{
|
||||
case 1:
|
||||
fileType = "Word.Document";
|
||||
fileTypeSimple = "wrod";
|
||||
break;
|
||||
case 2:
|
||||
fileType = "Excel.Sheet";
|
||||
fileTypeSimple="excel";
|
||||
break;
|
||||
case 3:
|
||||
fileType = "PowerPoint.Show";
|
||||
fileTypeSimple = "ppt";
|
||||
break;
|
||||
case 4:
|
||||
fileType = "Visio.Drawing";
|
||||
break;
|
||||
case 5:
|
||||
fileType = "MSProject.Project";
|
||||
break;
|
||||
case 6:
|
||||
fileType = "WPS Doc";
|
||||
fileTypeSimple="wps";
|
||||
break;
|
||||
case 7:
|
||||
fileType = "Kingsoft Sheet";
|
||||
fileTypeSimple="et";
|
||||
break;
|
||||
default :
|
||||
fileType = "unkownfiletype";
|
||||
fileTypeSimple="unkownfiletype";
|
||||
}
|
||||
|
||||
alert("ondocumentopened成功回调");
|
||||
}
|
||||
function publishashtml(type,code,html){
|
||||
alert(html);
|
||||
alert("Onpublishashtmltourl成功回调");
|
||||
}
|
||||
function publishaspdf(type,code,html){
|
||||
alert(html);
|
||||
alert("Onpublishaspdftourl成功回调");
|
||||
}
|
||||
function saveasotherurl(type,code,html){
|
||||
alert(html);
|
||||
alert("SaveAsOtherformattourl成功回调");
|
||||
}
|
||||
function dowebget(type,code,html){
|
||||
alert(html);
|
||||
alert("OnDoWebGet成功回调");
|
||||
}
|
||||
function webExecute(type,code,html){
|
||||
alert(html);
|
||||
alert("OnDoWebExecute成功回调");
|
||||
}
|
||||
function webExecute2(type,code,html){
|
||||
alert(html);
|
||||
alert("OnDoWebExecute2成功回调");
|
||||
}
|
||||
function FileCommand(TANGER_OCX_str,TANGER_OCX_obj){
|
||||
if (TANGER_OCX_str == 3)
|
||||
{
|
||||
alert("不能保存!");
|
||||
TANGER_OCX_OBJ.CancelLastCommand = true;
|
||||
}
|
||||
}
|
||||
function CustomMenuCmd(menuPos,submenuPos,subsubmenuPos,menuCaption,menuID){
|
||||
alert("第" + menuPos +","+ submenuPos +","+ subsubmenuPos +"个菜单项,menuID="+menuID+",菜单标题为\""+menuCaption+"\"的命令被执行.");
|
||||
}
|
||||
var classid = 'C9BC4DFF-4248-4a3c-8A49-63A7D317F404';
|
||||
if (browser=="IE"){
|
||||
document.write('<!-- 用来产生编辑状态的ActiveX控件的JS脚本--> ');
|
||||
document.write('<!-- 因为微软的ActiveX新机制,需要一个外部引入的js--> ');
|
||||
document.write('<object id="TANGER_OCX" classid="clsid:'+classid+'"');
|
||||
document.write('codebase="../../OfficeControl/OfficeControl.cab#version=5,0,2,8" width="100%" height="100%"> ');
|
||||
document.write('<param name="IsUseUTF8URL" value="-1"> ');
|
||||
document.write('<param name="IsUseUTF8Data" value="-1"> ');
|
||||
document.write('<param name="BorderStyle" value="1"> ');
|
||||
document.write('<param name="BorderColor" value="14402205"> ');
|
||||
document.write('<param name="TitlebarColor" value="15658734"> ');
|
||||
document.write('<param name="isoptforopenspeed" value="0"> ');
|
||||
|
||||
|
||||
|
||||
|
||||
document.write('<param name="ProductCaption" value="合肥诺必达信息技术有限责任公司"> ');
|
||||
document.write('<param name="ProductKey" value="23586E487FB9E2150B1E57E2D1D02E4A81B877E7">');
|
||||
|
||||
|
||||
|
||||
|
||||
document.write('<param name="TitlebarTextColor" value="0"> ');
|
||||
document.write('<param name="MenubarColor" value="14402205"> ');
|
||||
document.write('<param name="MenuButtonColor" VALUE="16180947"> ');
|
||||
document.write('<param name="MenuBarStyle" value="3"> ');
|
||||
document.write('<param name="MenuButtonStyle" value="7"> ');
|
||||
document.write('<param name="WebUserName" value="NTKO"> ');
|
||||
document.write('<param name="Caption" value="编辑"> ');
|
||||
document.write('<SPAN STYLE="color:red">不能装载文档控件。请在检查浏览器的选项中检查浏览器的安全设置。</SPAN> ');
|
||||
document.write('</object>');
|
||||
}
|
||||
else if (browser=="firefox"){
|
||||
document.write('<object id="TANGER_OCX" type="application/ntko-plug" codebase="../../OfficeControl/OfficeControl.cab#version=5,0,2,8" width="100%" height="100%" ForOnSaveToURL="OnComplete2" ForOnBeginOpenFromURL="OnComplete" ForOndocumentopened="OnComplete3"');
|
||||
document.write('ForOnpublishAshtmltourl="publishashtml"');
|
||||
document.write('ForOnpublishAspdftourl="publishaspdf"');
|
||||
document.write('ForOnSaveAsOtherFormatToUrl="saveasotherurl"');
|
||||
document.write('ForOnDoWebGet="dowebget"');
|
||||
document.write('ForOnDoWebExecute="webExecute"');
|
||||
document.write('ForOnDoWebExecute2="webExecute2"');
|
||||
document.write('ForOnFileCommand="FileCommand"');
|
||||
document.write('ForOnCustomMenuCmd2="CustomMenuCmd"');
|
||||
document.write('_IsUseUTF8URL="-1" ');
|
||||
|
||||
|
||||
document.write('_ProductCaption="合肥诺必达信息技术有限责任公司" ');
|
||||
document.write('_ProductKey="23586E487FB9E2150B1E57E2D1D02E4A81B877E7"');
|
||||
|
||||
document.write('_IsUseUTF8Data="-1" ');
|
||||
document.write('_BorderStyle="1" ');
|
||||
document.write('_BorderColor="14402205" ');
|
||||
document.write('_MenubarColor="14402205" ');
|
||||
document.write('_MenuButtonColor="16180947" ');
|
||||
document.write('_MenuBarStyle="3" ');
|
||||
document.write('_MenuButtonStyle="7" ');
|
||||
document.write('_WebUserName="NTKO" ');
|
||||
document.write('clsid="{'+classid+'}" >');
|
||||
document.write('<SPAN STYLE="color:red">尚未安装NTKO Web FireFox跨浏览器插件。请点击<a href="ntkoplugins.xpi">安装组1件</a></SPAN> ');
|
||||
document.write('</object> ');
|
||||
}else if(browser=="chrome"){
|
||||
document.write('<object id="TANGER_OCX" clsid="{'+classid+'}" ForOnSaveToURL="OnComplete2" ForOnBeginOpenFromURL="OnComplete" ForOndocumentopened="OnComplete3"');
|
||||
document.write('ForOnpublishAshtmltourl="publishashtml"');
|
||||
document.write('ForOnpublishAspdftourl="publishaspdf"');
|
||||
document.write('ForOnSaveAsOtherFormatToUrl="saveasotherurl"');
|
||||
document.write('ForOnDoWebGet="dowebget"');
|
||||
document.write('ForOnDoWebExecute="webExecute"');
|
||||
document.write('ForOnDoWebExecute2="webExecute2"');
|
||||
document.write('ForOnFileCommand="FileCommand"');
|
||||
document.write('ForOnCustomMenuCmd2="CustomMenuCmd"');
|
||||
|
||||
document.write('_ProductCaption="合肥诺必达信息技术有限责任公司" ');
|
||||
document.write('_ProductKey="23586E487FB9E2150B1E57E2D1D02E4A81B877E7"');
|
||||
|
||||
document.write('codebase="../../OfficeControl/OfficeControl.cab#version=5,0,2,8" width="100%" height="100%" type="application/ntko-plug" ');
|
||||
document.write('_IsUseUTF8URL="-1" ');
|
||||
document.write('_IsUseUTF8Data="-1" ');
|
||||
document.write('_BorderStyle="1" ');
|
||||
document.write('_BorderColor="14402205" ');
|
||||
document.write('_MenubarColor="14402205" ');
|
||||
document.write('_MenuButtonColor="16180947" ');
|
||||
document.write('_MenuBarStyle="3" ');
|
||||
document.write('_MenuButtonStyle="7" ');
|
||||
document.write('_WebUserName="NTKO" ');
|
||||
document.write('_Caption="编辑"> ');
|
||||
document.write('<SPAN STYLE="color:red">尚未安装NTKO Web Chrome跨浏览器插件。请点击<a href="ntkoplugins.crx">安装组件</a></SPAN> ');
|
||||
document.write('</object>');
|
||||
}else if (Sys.opera){
|
||||
alert("sorry,ntko web印章暂时不支持opera!");
|
||||
}else if (Sys.safari){
|
||||
alert("sorry,ntko web印章暂时不支持safari!");
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
document.write('<object id="ntkosignctl" classid="clsid:3DFFFCF3-D78C-42b8-B5ED-44DC57B6FD4E" codebase="officecontrol/ntkosigntool.cab#version=4,0,0,0" width="70%" height="20px"> ');
|
||||
document.write('<param name="IsUseUTF8Data" value="-1"/>');
|
||||
document.write('<param name="IsUseUTF8URL" value="-1"/>');
|
||||
document.write(' <span>不能装载印章管理控件。请在检查浏览器的选项中检查浏览器的安全设置。</span>');
|
||||
document.write(' </object>');
|
||||
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
2、手工卸载NTKO OFFICE文档控件的步骤:
|
||||
1)执行如下步骤之前最好重新启动计算机。如果不重新启动,请确保关闭所有浏览器以及可能使用控件的开发工具,比如Visual Studio.Net.如果任务管理器中存在iexplorer.exe进程,则终止它。这样做可以保证系统中不存在使用控件的进程,以避免卸载/删除失败。
|
||||
2)删除c:\windows(winnt)\downloaded program files目录下的 NTKO OFFICE文档控件(未授权演示版)。
|
||||
3)将officecontrol.cab中的officecontrol.ocx解开,拷贝到比如:c:\officecontrol.ocx
|
||||
4)从命令行运行: regsvr32 /u c:\officecontrol.ocx
|
||||
就可以彻底卸载控件。
|
||||
3、手工安装NTKO OFFICE文档控件的步骤:
|
||||
1) 将officecontrol.cab中的officecontrol.ocx解开,拷贝到比如:c:\officecontrol.ocx
|
||||
2)从命令行运行: regsvr32 c:\officecontrol.ocx
|
||||
Reference in New Issue
Block a user