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

📄 set.asp

📁 在ASP下实现的bbs网站建设
💻 ASP
字号:
<%@ LANGUAGE="VBSCRIPT" %>
<% option explicit%>
<!-- #include file="connection.asp" -->
<!-- #include file="std.asp" -->
<%
OnlySysop
dim strSetit,strSSQL
dim rsSysInfo2

strSetit=request("setit")
set rsSysInfo2=CreateObject("ADODB.RecordSet")

if strSetit="改名" then
	Application.Lock
	Application("title")=request("title")
    Application.Unlock
	strSSQL="Update sysinfo set title='"+request("title")+"'"
	rsSysInfo2.Open strSSQL,myconn,1
	session("strMsg")="社区名字已修改,请刷新或重新登录"
end if

if strSetit="管理员" then
	Application.Lock
	Application("Sysop")=","+request("sysop")+","
	Application.Unlock
	strSSQL="Update sysinfo set sysop='"+Application("sysop")+"'"
	rsSysInfo2.Open strSSQL,myconn,1
	session("strMsg")="管理员名单已经更新!"
end if

set rsSysInfo2=nothing
session("strURL")="sysManager.asp?o="+cstr(timer())
response.redirect "alert.asp"
%>

⌨️ 快捷键说明

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