用vbs模拟的一个asp的分页显示功能
<script language=VBS>
Function showINDEXPAGE()
JS=1
webPath=window.location
Do until Left(webPATH,1)="#" or JS=len(window.location)
JS=JS+1
webPATH=Right(window.location,JS)
Loop
if JS=len(window.location) then showINDEXPAGE=1 else showINDEXPAGE=Replace(webPATH,"#","")
END Function
QZ="" '需要显示的图像文件前缀
HZ=".gif" '需要显示的图像文件后缀
theMAX=98 '最大显示图像个数
theSKIP=5 '每行显示多少图像个数
thePAGE=20 '每页显示多少图像个数
theINDEX=int(theMAX/thePAGE)
if theMAX mod thePAGE <> 0 then theINDEX=theINDEX+1
for i=1 to theINDEX
showINDEX="<a href=#"&i&" onclick=window.location.reload()>"&"["&i&"]"&"</a> "
document.write showINDEX
next
document.write "<br><br><hr>"
if thePAGE=0 then thePAGE=theMAX
for i=1 to thePAGE
theNUM=i+thePAGE*(showINDEXPAGE()-1)
if theNum>theMAX then EXIT FOR
if theNUM<10 then
temp="<img src="&QZ&"00"&theNUM&HZ&"></img>"
else if theNum<100 then
temp="<img src="&QZ&"0"&theNUM&HZ&"></img>"
else
temp="<img src="&QZ&theNUM&HZ&"></img>"
end if
end if
document.write temp
if theSKIP<>0 then if i mod theSKIP = 0 then document.write "<br>"
next
document.write "<hr><br><br>"
for i=1 to theINDEX
showINDEX="<a href=#"&i&" onclick=window.location.reload()>"&"["&i&"]"&"</a> "
document.write showINDEX
next
</script>
自动刷新自动分页测试[zozo98]
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
另:
取得#后面的内容可以使用
replace(window.location.hash,"#","")
本地连接禁用/启用批处理脚本
ConstssfCONTROLS=3sConnectionName="本地连接"'可改成需要控制的连接名称,如"无线网络连接"等sEnableVerb="启用(&A)"sDisableVerb="禁用(&B)"'XP系统中应为"停用(&B)"setshel
右键发送(sendto),创建快捷方式到自定义的位置 的vbs
在SendTo文件夹里加上一文件夹的快捷方式后,在右键发送到这个文件夹的是这些文件的一个副本,实际上是一个复制的过程,有时候我们只希望是快捷
WINDOWS脚本实践:为SAP补丁制作的VBS脚本代码
脚本主要功能包括:注册表读取与修改文件内容修改如HOSTS、SERVICES文件文件属性修改和文件复制系统环境变量设置等,仅供参考'SAP设置脚本'编写:SCZ2005