⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 guestselect.asp

📁 SK信息采集2.0功能介绍: 1.可针对任何静态网页,动态网页进行采集。包括htm,html,shtml,ASP,ASPX,JSP,PHP等。 2.增加自定文件采集.用户可采集网页中的所有文件.
💻 ASP
字号:
<%
dim guestimagesnum,imagespath,emotnum,emotpath
imagespath="../Skin/face/"
emotpath="../images/emot/"
guestimagesnum=23
emotnum=23

action=request("action")
select case action
	case "face"
		PageTitle="请选择头像"
		call guestface()
	case "emot"
		PageTitle="请选择表情"
		call emot()
end select

%>
<html>
<head>
<title><%=PageTitle%></title>
<script>
window.focus()
function changeimage(imagename)
{ 
	window.opener.document.myform.pic.value=imagename;
	window.opener.document.myform.showimages.src="<%=imagespath%>"+imagename+".gif";
}
</script>
<style type="text/css">
A{TEXT-DECORATION: none;}
A:hover{COLOR: #0099FF;}
A:link {color: #205064;}
A:visited {color: #006699;}
BODY{
FONT-FAMILY: 宋体;
FONT-SIZE: 9pt;
text-decoration: none;
line-height: 150%;
background-color: #FBFDFF;}
TD{
FONT-FAMILY:宋体;
FONT-SIZE: 9pt;}
Input{
FONT-SIZE: 9pt;
HEIGHT: 20px;}
Button{
FONT-SIZE: 9pt;
HEIGHT: 20px; }
Select{
FONT-SIZE: 9pt;
HEIGHT: 20px;}
.border{border: 1px solid #CCCCCC;}
.border2{
background:#fef8ed;
BORDER-RIGHT: #999999 1px solid; 
BORDER-LEFT: #999999 1px solid}
.title{background:#f6f6f6;}
</style>
</head>
<body>
<% sub guestface()%>
<table align=center width=95% cellpadding=5><td>
<%

for i=1 to 9
	Response.Write "<a href=""javascript:window.close();""><img src='"&imagespath&"0"&i&".gif' border=0 onclick=""changeimage('0"&i&"') "" style=cursor:hand></a> "
next
for i=10 to guestimagesnum
	Response.Write "<a href=""javascript:window.close();""><img src='"&imagespath&""&i&".gif' border=0 onclick=""changeimage('"&i&"') "" style=cursor:hand></a> "
next
%>
</td></tr>
</table>
<%end sub%>

<% sub emot()%>
<table align=center width=95% cellpadding=5><td>
<%

for i=1 to emotnum
	Response.Write "<a href=""javascript:window.close();""><img src='"&emotpath&"emot"&i&".gif' border=0 onclick=""window.opener.document.formwrite.GuestContent.value+='[emot"&i&"]' "" style=cursor:hand></a> "
	if i mod 6 =0 then
		Response.Write "<br>"
	end if
next
%>
</td></tr></table>
<%end sub%>
<div align="center"><font size="2">[<a href="javascript:window.close();">关闭窗口</a>]</font></div>

⌨️ 快捷键说明

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