📄 presign.asp
字号:
<% Option Explicit %>
<!--#include file="conn.asp" -->
<!--#include file="functions/formatpost.asp" -->
<!--#include file="includes/emoticons.asp" -->
<%
Response.Buffer = True
Dim strSignature
strSignature = Mid(Request.Form("signature"), 1, 200)
strSignature = FormatPost(strSignature)
strSignature = FormatForumCodes(strSignature)
strSignature = checkHTML(strSignature)
If strSignature = "" OR IsNull(strSignature) Then
strSignature = "<br /><br /><div align=""center"">没有预览</div><br /><br />"
Else
strSignature = " " & "<!-- Signature --><br /><br />__________________<br />" & strSignature & "<!-- Signature -->"
If blnFlashFiles Then
If InStr(1, strSignature, "[FLASH", 1) > 0 AND InStr(1, strSignature, "[/FLASH]", 1) > 0 Then strSignature = formatFlash(strSignature)
End If
End If
Set rsConn = Nothing
adoCon.Close
Set adoCon = Nothing
%>
<html>
<head>
<title>签名预览</title>
<!--#include file="includes/skin.asp" -->
</head>
<body bgcolor="<% = strBgColour %>" text="<% = strTextColour %>" background="<% = strBgImage %>" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" OnLoad="self.focus();">
<p> </p><table width="96%" border="0" cellspacing="0" cellpadding="1" align="center" height="53">
<tr>
<td align="center" height="17"><span class="heading">签名预览</span></td>
</tr>
<tr>
<td align="center" height="39"><a href="JavaScript:onClick=window.close()">关闭窗口</a></td>
</tr>
</table>
<table width="96%" border="0" cellspacing="0" cellpadding="1" bgcolor="<% = strTablePostsBorderColour %>" align="center">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" bgcolor="<% = strTablePostsEvenRowColour %>" background="<% = strTablePostsBgImage %>" height="147">
<tr>
<td class="text" valign="top">
<% = strSignature %>
</td>
</tr>
</table></td>
</tr>
</table>
<table width="96%" border="0" cellspacing="0" cellpadding="1" align="center">
<tr>
<td align="center" height="49"><a href="JavaScript:onClick=window.close()">关闭窗口</a></td>
</tr>
</table>
<br/><br/>
<!-- #include file="includes/footer.asp" -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -