javascript

来源:互联网 发布:tp框架的留言板源码 编辑:程序博客网 时间:2024/05/01 23:12
写注册表
----------------------------------------------------------
<script language="VBScript"> 
dim hkey_root,hkey_path,hkey_key 
hkey_root="HKEY_CURRENT_USER" 
hkey_path="/Software/Microsoft/Internet Explorer/PageSetup" 
'//设置网页打印的页眉页脚为空 
on error resume next
Set RegWsh = CreateObject("WScript.Shell")
hkey_key="/header"
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,""
hkey_key="/footer" 
RegWsh.RegWrite hkey_root+hkey_path+hkey_key,""
</script>
原创粉丝点击