峻
峻祁连
Unregistered / Unconfirmed
GUEST, unregistred user!
下面这样的代码保存成html或asp或aspx文件,在文件浏览器里直接用IE打开就能执行,而建立虚拟目录后在IE里用http://的URL方式打开就不会执行,谁能说明一下其中的原因?
-----------------------------------------------
<head>
</head>
<body>
<script language="JScript">
function fnShellExecuteJ()
{
var objShell = new ActiveXObject("Shell.Application");
objShell.ShellExecute("notepad.exe", "", "", "open", 1);
}
fnShellExecuteJ();
</script>
</body>