allface.asp

来自「聊天室工具」· ASP 代码 · 共 27 行

ASP
27
字号
<!--#include file="config.asp"-->
<%  
	dim show,Maxface
	show=5       '-------->定义每行显示头像数
	Maxface=35   '------->总头像数
sub showface()
    Response.Write("<table width=""450"" border=""0"" align=""center"" cellpadding=""0"" cellspacing=""0"" align=""center"">")
    Response.Write("<tr>")
	i=0
	for j=1 to Maxface
	i=i+1
		Response.Write("<td align=""center"" height=50><img src=""face/"&(j)&".gif"" onclick=""javascript:self.opener.reg.face.selectedIndex="&j-1&";self.close();"" style=""CURSOR: hand""><br>"&(j)&"</td>")
	if i=show then
		response.write "</tr><tr>"
	i=0
	end if 
	next
end sub
%>
<title><%=chatname%>--头像图片</title>
</head>
<body text=#000000 leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<br>
<%call showface()%>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?