<!--
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu(){
event.cancelBubble = true
event.returnValue = false;
return false;}
function norightclick(e){
if (window.Event){
if (e.which == 2 || e.which == 3)
return false;}
else
if (event.button == 2 || event.button == 3){
event.cancelBubble = true
event.returnValue = false;
return false;}
}
//禁止右键
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
AspcnUP 组件的使用方法 1 ASPCNUP的安装
先去下载本组件(请到 http://www.aspcn.com 下载),下载的是一个AspcnUP的zip包,解压此包到c:\aspcn目录(目录由您选择)中去。
然后运行 开始-------运行
在运行栏中键入 regsvr32 c:\aspcn\aspcnUP.dll 就大功造成了
2 ASPCNUP的升级
1)NT(windows 2000)+IIS
如果从1.0以下的版本升级而来,在 IIS下请您先关掉您的IIS,命令行是
net stop iisadmin
然后再运行 regsvr32 c:\aspcn\aspcnUP.dll
2)WIN 98 + PWS 4.0
如果Window 98,请先用pws /stop 关闭PWS,PWS位于c:\windows\system\inetsrv\ 目录下,
请自行查找,然后再运行 regsvr32 c:\aspcn\aspcnUP.dll
本文地址:http://com.8s8s.com/it/it31792.htm