📄 sessionname.htm
字号:
<html>
<head>
<title></title>
</head>
<body>
GENERATE THE RANDOM SESSION NAME<br>
<p></p>
<font color=Firebrick><b>
<script language="vbscript">
dim cs,ce
dim i
cs=asc("A")
ce=asc("Z")
Randomize
for i=1 to 8
document.write chr( int(rnd * (ce-cs+1)) + cs )
next
document.write "-"
for i=1 to 4
document.write chr( int(rnd * (ce-cs+1)) + cs )
next
document.write "-"
for i=1 to 4
document.write chr( int(rnd * (ce-cs+1)) + cs )
next
document.write "-"
for i=1 to 8
document.write chr( int(rnd * (ce-cs+1)) + cs )
next
</script>
</b></font>
<p>Press refresh to re-generate.</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -