在ASP.NET中打印,利用WINDOW.PRINT(),如何能将页眉等去掉?

<SCRIPT LANGUAGE="VBScript">
dim hkey_root,hkey_path,hkey_key
hkey_root="HKEY_CURRENT_USER"
hkey_path="\Software\Microsoft\Internet Explorer\PageSetup"
'//设置网页打印的页眉页脚为空
function pagesetup_null()
    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,""
end function
call pagesetup_null()
</SCRIPT>

这样杀毒软件会检测
原文地址:https://www.cnblogs.com/huashanlin/p/482625.html