📄 allface.asp
字号:
<!--#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -