用记事本打开要加密文件夹的“folder.htt”文件,找到:
“<META HTTP -EQUIV=”Content-type” content=”text/html; charset=gb2312”>”
<!——allow references to any resources you might add to the folder——>
……………………
………………
<base href=”%thisdirpath%/”>
<!——webbot bot =”htmlmarkup” endspan——>一段,在次段后加入
“<script language=”vbscript”>
function askpass()
document.all.filelist.style.visibility=”hidden”
passwrd=”22222”
getii=window.prompt(“请输入密码:”)
if getii =passwrd then
window.alert(“欢迎!!”)
document.all.filelist.style.visibility=”visible”
else
window.alert(“密码错!!”)
end if
end function
</script>”
然后在“<body scrill =no onload =”init()”>”一句前添加“<body scroll no onload=”askpass()”>”一句,保存退出。