📄 showallface.ascx
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>用户头像列表</title>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<style type=text/css>
body, a, table, div, span, td, th, input, select{font:9pt;font-family: "宋体", Verdana, Arial, Helvetica, sans-serif;}
body {padding:5px}
table.content {background-color:#000000;width:100%;}
table.content td {background-color:#ffffff;width:18px;height:18px;text-align:center;vertical-align:middle;cursor:hand;}
.card {cursor:hand;background-color:#3A6EA5;text-align:center;}
</style>
<script type="text/javascript">
// 点击返回
function SymbolClick(txt){
window.returnValue = txt
window.close();
}
</script>
</head>
<body bgcolor=#D4D0C8>
<table border=0 cellpadding=0 cellspacing=0 ID="Table1"><tr valign=top><td>
<fieldset><legend><b>插入头像</b></legend><br>
<table border=0 cellpadding=3 cellspacing=1 class="content" id="content1">
<%for(int i = 0;i < 6;i ++)
{%>
<tr>
<%if(i == 0) {
for(int j = 1;j < 11;j ++) {%>
<td><IMG src='images/UserFace/image<%=j%>.gif' onclick="SymbolClick('<%=j%>')"></td>
<%
}
} else {
for(int j=1;j < 11;j ++)
{
if(j == 10) {%>
<td><IMG src='images/UserFace/image<%=(i + 1) * j%>.gif' onclick="SymbolClick('<%=(i + 1) * j%>')"></td>
<%
} else {
%>
<td><IMG src='images/UserFace/image<%=i%><%=j%>.gif' onclick="SymbolClick('<%=i%><%=j%>')"></td>
<% }
}
}%>
</tr>
<%}%>
</table>
</fieldset>
</td><td width=10></td>
</tr></table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -