背景代码
<%
Response.buffer=false
server.ScriptTimout=150
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>满天星星</title>
</head>
<body bgcolor="#000000">
<%
dim k,i
dim nexsetcond
for k=1 to 60
nextsecond=dateadd("s",2,time)
do while time< nextsecond
loop
Randomize
star=int(50*rnd())
for i=1 to star
Response.Write "<font color=#000000>*</font>"
Next
Response.Write"<font color=#fffffff>*</font>"
if k mod 3=2 then response.write"<br>"
next
%>
</body>
</html>
必须要用IIS服务器才能看得到效果!!!!!!
|