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

📄 preview.asp

📁 BBS论坛的开发和设计
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="admin/BBSConfig.asp"-->
<!--#include file="INC/header.asp"-->
<!--#include file="INC/CHAR.INC"-->
<!--#include file="INC/Board_Config.asp"-->
<%
	BoardID = trim(request.Form("BoardID"))
	 postcontent = trim(request.Form("txtcontent"))
	 if not(isNumeric(BoardID)) then
	 response.End()
	 end if
		Board_info BoardID
		Board_Config = Application(JBBMasterCookies&"Board_Config"&BoardID)
		if Board_Config(6)=true then styleid = Board_Config(5)
%>
<!--#include file="INC/style.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%=BBS_Config(0)&" -  预览贴子"%></title>
<link href="<%=Css_path%>" rel="stylesheet" type="text/css">
</head>

<body leftmargin="0" topmargin="0"><br>

<table border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  <tr> 
    <td width="177" valign="top" class="table-title">预览贴子</td>
  </tr>
  <tr> 
    <td height="204" valign="top" class="table-light"> 
      <%
	 response.Write("<br>"+ubbcode(postcontent))
	  %>
    </td>
  </tr>
  <tr>
    <td valign="top" class="table-light"><div align="center">
        <input name="button" type="button" onClick="javascript:window.close()" value="关闭本窗口">
      </div></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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