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

📄 sendmsg.asp

📁 === === === === === === === === === 项目:图书管理系统V2.0 作者:覃武权 主页:http://cpucool.512j.com 邮箱:cooltoend
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/conn.asp" -->
<!--#include file="global.asp" -->
<%
If (CStr(Request("MM_insert")) = "form1") Then
	dim sql,rs
	dim id1,name1,id2,name2
	If Session("userright")="user" then
		id1 = Session("cardno")
		name1 = Session("username")
	Else
		id1 = 0
		name1 = "管理员"
	End If	
	if request("touserid")>0 then
		sql = "SELECT name FROM Borrowers WHERE cardno = "&Request("touserid")
		rs = executeQuery(sql)
		id2 = Request("touserid")
		name2 = rs("name")
	else
		id2 = 0
		name2 = "管理员"
	end if
	sql = "insert into message (fromuserid,fromusername,touserid,tousername,content) values "
	sql = sql & "("&id1&",'"&name1&"',"&id2&",'"&name2&"','"&replace(request("content"),"'","''")&"')"
	executeUpdate(sql)
	if request("id")<>"" then
		sql = "update message set isreply=1 where id="&Request("id")
		executeUpdate(sql)
	end if
	if request("userid")>0 then
		addLog "","","向ID为"&request("touserid")&"的用户"&rs("name")&"发送了一条短消息"
	else
		addLog "","","向管理员发送了一条短消息"
	end if
	freshTo "短消息已经发送。","readMsg.asp"
End If
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="images/style.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_validateForm() { //v4.0
  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
      } else if (test!='R') { num = parseFloat(val);
        if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
  } if (errors) alert('The following error(s) occurred:\n'+errors);
  document.MM_returnValue = (errors == '');
}
//-->
</script>
</head>

<body>
<% 
dim towho
if (Request("userid")=0) then 
	towho = "管理员"
else
	towho = Trim(Request.QueryString("name"))
end if
%>
<table width="95%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#FFFFFF">
  <tr>
    <td><br>
      <form method="post" action="<%=MM_editAction%>" name="form1" onSubmit="MM_validateForm('touserid','','RisNum','content','','R');return document.MM_returnValue">
        <table width="500" align="center">
          <tr valign="baseline"> 
            <td height="30" align="right" nowrap>收信人卡号:</td>
            <td> <input type="text" name="touserid" value="<%= Trim(Request.QueryString("userid")) %>" <%if (Request("userid")<>"") then response.Write(" readonly=""true""")%> size="32"> </td>
          </tr>
		  <% if (Request("userid")<>"") then %>
          <tr valign="baseline"> 
            <td height="30" align="right" nowrap>收信人姓名:</td>
            <td> <input type="text" name="tousername" value="<%= towho %>" size="32" disabled> </td>
          </tr>
		  <% end if %>
          <tr valign="baseline"> 
            <td height="30" align="right" valign="middle" nowrap>内容:</td>
            <td> <textarea name="content" cols="50" rows="5"></textarea> </td>
          </tr>
          <tr valign="baseline"> 
            <td nowrap align="right">&nbsp;</td>
            <td> <input type="submit" value="发送消息"> </td>
          </tr>
        </table>
        <input type="hidden" name="MM_insert" value="form1">
      </form>
      <p>&nbsp;</p>
      <br>
    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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