sessionname.htm

来自「在线考试系统」· HTM 代码 · 共 47 行

HTM
47
字号
<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 + =
减小字号Ctrl + -
显示快捷键?