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

📄 configue.asp

📁 WAP2.0的手机网站留言板
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Response.CodePage=65001%>
<%Response.Charset="UTF-8"%>
<!--#include file="getHeader.asp"-->
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!--#include file="adminCheck.asp"-->
<!--#include file="../func.asp"-->
<!--#include file="db_conn_admin.asp"-->
 <head>
  <title> 留言板设置 </title>
  <meta http-equiv="Content-Type" content="<%=header%>; charset=utf-8" />
  <meta name="Author" content="微普科技http://www.wiipu.com"/>
  <link rel="stylesheet" href="admin.css" type="text/css"/>
 </head>
 <%
	Dim up
	up=Trim(request.queryString("up"))
	If up="" Then up=0
	up=CInt(up)
	
	If up=1 Then 
		pic=session("logo")
	else
		pic=siteLogo
	End if
 %>
 <body>
	<form action="configue_do.asp" method="post">
		<h2>留言板设置</h2>
		<%If pic<>"" Then response.write "<img src='../"&pic&"' alt=''/><br/>"%>
		留言板Logo:<input type="text" name="pic" value="<%=pic%>"/> <a href="picUp.asp">上传</a><br/>
		网站名称:<input type="text" name="name" value="<%=siteName%>"/><br/>
		留言板宽度:<input type="radio" name="width" value="0" <%If siteWidth="0" Then response.write "checked"%>/> 标准(240px)  <input type="radio" name="width" value="1" <%If SiteWidth="1" Then response.write "checked"%>/> 适应屏幕<br/>
		公开留言列表:<input type="radio" name="isMsgShow" value="1" <%If isMsgShow="1" Then response.write "checked"%>/> 是  <input type="radio" name="isMsgShow" value="0" <%If isMsgShow="0" Then response.write "checked"%>/> 否<br/>
		每页显示留言数量:<input type="text" name="msgShowNum" value="<%=msgShowNum%>" size="3"/> <br/>
		留言介绍:(显示在“写留言”前面的内容)<br/>
		<textarea name="msgIntro" rows="4" cols="20"><%=ReHTMLEncode(msgIntro)%></textarea>
		<br/>内容过滤:(不允许出现的字词。词之间用逗号分开)<br/>
		<textarea name="filter" rows="4" cols="20"><%=msgFilter%></textarea>
		<br/>
		(如需将留言即时发到邮箱,请填写下面的数据)
		<br/>
		SMTP服务器:<input type="text" name="mailSMTP" value="<%=mailSMTP%>"/><br/>
		Email地址:<input type="text" name="mailAdd" value="<%=mailAddress%>"/><br/>
		Email帐号:<input type="text" name="mailAcc" value="<%=mailAccount%>"/><br/>
		Email密码:<input type="password" name="mailPass" value="<%=mailPassword%>"/><br/>
		<br/>
		<input type="submit" value="保存"/>
	</form>
	<hr/>
	【<a href="main.asp">返回主菜单</a>】<br/>
	<br/>
	Copyright(c)WiiPu微普科技
 </body>
</html>

⌨️ 快捷键说明

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