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

📄 admin_pmall.asp

📁 本息统基于中国网站技术人员最熟悉WindowsNT环境和Asp语言
💻 ASP
字号:
<!--#include file="inc/inc_sys.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Oblog 短消息管理</title>
<link href="images/admin/admin_style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p><%
dim action
action=request("action")
call send()
select case action
	case "save"
	call save()
end select
sub send()
	dim rs
%>
<SCRIPT language=javascript>
function changincept()
{
	document.oblogform.incept.value = document.oblogform.selectincept.value;
}
</SCRIPT>
<style type="text/css">
<!--
	#list ul { width: 100%; MARGIN: 0px; } 
	#list ul li.1 { width: 90px;text-align: right;} 
	#list ul li.2 { width: 300px;text-align: left;} 
-->
</style>
<br>
</p><p>&nbsp;</p><table align="center" cellpadding="1" cellspacing="1" Class="border">
<form action="admin_pmall.asp?action=save" method="post" name="oblogform">
  <tr class="tdbg">
    <td>收件人:</td>
    <td>
      <input name="u" type="radio" value="1" checked>所有用户
	  <input name="u" type="radio" value="2">Vip用户
	  <input name="u" type="radio" value="3">普通用户
	</td>
  </tr>
 <tr class="tdbg">
    <td>标题:</td>
	<td><input type="text" name="topic" size="45" maxlength="50" /></td>
 </tr>
   <tr class="tdbg">
    <td>内容:<br />(250字内)</td>
	<td><textarea name="content" cols="45" rows="8"></textarea></td>
  </tr>
 <tr class="tdbg">
   <td></td><td> <INPUT type="hidden" name="id" value="">
        <input type="submit"  value=" 提交 ">
		 <br>
		(用户多的网站建议不要使用此功能,比较消耗服务器资源)</td>
</tr>
</form>
</table>
<%
end sub

sub save()
	dim incept,content,sql,rs,inceptid,topic,username,sqlt,rst,u,s
	content=trim(request("content"))
	topic=trim(request("topic"))
	u=clng(request("u"))
	select case u
		case 1
			s=""
		case 2
			s=" where user_level=7"
		case 3
			s=" where user_level=8"
	end select
	if content="" then response.write("错误:短消息内容不能为空")
	if topic="" then response.write("错误:短消息标题不能为空")
	if content<>"" and topic<>"" then
	dim i,kk
	sql="select userid,username from [oblog_user]"&s
	set rs=oblog.execute(sql)
	do while not rs.eof
	username=rs("username")
	sqlt="select * from oblog_pm"
	set rst=server.createobject("adodb.recordset")
	rst.open sqlt,conn,1,3
	rst.addnew
	rst("incept")=oblog.Interceptstr(username,50)
	rst("topic")=oblog.Interceptstr(oblog.filt_badword(topic),100)
	rst("content")=oblog.Interceptstr(oblog.filt_badword(content),250)
	rst("sender")="管理员"
	rst.update
	rst.close
	rs.movenext
	loop
	rs.close
	set rs=nothing
	response.Write("<ul><li>短消息发送成功</li></ul>")
end if
end sub

%>
</body>
</html>

⌨️ 快捷键说明

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