| 
				 
					结合《编写ASP图形计数器》一文,最后的站点计数器的源程序应该是: 
					 
					<html> 
					<head> 
					…… 
					</head> 
					<body> 
					<%dim tms,counter,countlen 
					dim images(20) 
					h1="<p><font color='#8000ff'>这是一个ASP计数器</font></p>" 
					If IsEmpty(Session("hasbeenConnected")) then 
					set rs=server.createobject("adodb.recordset") 
					application.lock 
					rs.open "update aspcount set countss=countss+1","dsn=userdbs",3,3 
					application.unlock 
					Session("hasbeenConnected")=True 
					End If 
					set rs=server.createobject("adodb.recordset") 
					rs.open "select * from aspcount","dsn=userdbs",3,3 
					rs.movefirst 
					counter=rs(0) 
					countlen=len(counter) 
					tms="<h1><font color='#8000ff'>您是第</font>"&&counter&&"<font color='#8000ff'>位访问者!</font></h1>" 
					response.write(tms) 
					for i=1 to countlen 
					images(i)="<img src=" && mid(counter,i,1) && ".gif></img>" 
					next 
					response.write images(1)&&images(2)&&images(3)&&images(4)&&images(5)&&images(6)&&images(7) 
					rs.Close 
					%> 
					</body> 
					</html>   
			 |