📄 sendmeetindb.asp
字号:
<!--#include file="asp/opendb.asp"-->
<!--#include file="asp/checkuser.asp"-->
<!--#include file="asp/top.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="ProgId" content="FrontPage.Editor.Document">
<link rel="stylesheet" href="css/css.css">
<title></title>
</head>
<body bgcolor="#eeeeee" topmargin="5" leftmargin="0">
<%
if Request.ServerVariables("REQUEST_METHOD") = "POST" Then
function makefilename(fname)
fname = now()
fname = replace(fname,"-","")
fname = replace(fname," ","")
fname = replace(fname,":","")
fname = replace(fname,"PM","")
fname = replace(fname,"AM","")
fname = replace(fname,"上午","")
fname = replace(fname,"下午","")
makefilename=fname
end function
vfname = makefilename(now())
set conn=opendb("oabusy","conn","accessdsn")
set xup = Server.CreateObject("Xionsoft.XionFileUpLoad")
if xup.FileCount =0 then
Response.Write "请选择要上传的文件"
Response.Write "<a href=newmeet.asp>返回</a>"
Response.End
end if
filename1=xup.FileName("file1")
if lcase(right(filename1,4))<>".pdf" and lcase(right(filename1,4))<>".doc" then
Response.Write "必须上传是PDF或WORD文档,您上传的是:"&lcase(right(filename1,4))
Response.Write "<a href=newmeet.asp>返回</a>"
Response.End
end if
if xup.FileSize("file1")>4000000 then
Response.Write "文档超大,必须小于4000000字节"
Response.Write "<a href=newmeet.asp>返回</a>"
Response.End
end if
for i=1 to xup.ItemCount
if xup.ItemName(i)="meetname" then meetname=xup.ItemValue(i)
if xup.ItemName(i)="opendept" then opendept=xup.ItemValue(i)
'if xup.ItemName(i)="meetman" then meetman=xup.ItemValue(i)
if xup.ItemName(i)="meettime" then meettime=xup.ItemValue(i)
if xup.ItemName(i)="joinman" then joinman=xup.ItemValue(i)
'if xup.ItemName(i)="content" then content=xup.ItemValue(i)
'if xup.ItemName(i)="memo" then memo=xup.ItemValue(i)
if xup.ItemName(i)="qdyn" then qdyn=xup.ItemValue(i)
if xup.ItemName(i)="fkyn" then fkyn=xup.ItemValue(i)
if xup.ItemName(i)="dfdw" then dfdw=xup.ItemValue(i)
next
set rs=server.createobject("ADODB.recordset")
sql="select * from path"
rs.open sql,conn,1,3
if not rs.eof and not rs.bof then
filepath=rs("meetword")
else
filepath="upfile/"
end if
rs.close
sql = "select * from meetdate"
rs.Open sql,conn,1,3
rs.addnew
'if oabusyuserlevel="supermanage" then
if dfdw="" then
rs("fbdw")=oabusyusername
else
rs("fbdw")=dfdw
end if
'else
' rs("fbdw")=oabusyusername
'end if
rs("meetname")=meetname
'rs("content")=content
rs("opendept")=opendept
if instr(joinman,rs("fbdw")) then
joinman=joinman&"|"
else
joinman="|"&rs("fbdw")&joinman&"|"
end if
rs("joinman")=joinman
'rs("meetman")=meetman
rs("meettime")=meettime
'rs("memo")=memo
rs("jointime")=now()
rs("filepath")=filepath
rs("filename")=vfname&filename1
'rs("filename2")="nofile"
if qdyn="yes" then rs("qdyn")=1
if fkyn="yes" then rs("fkyn")=1
rs.update
id=rs("id")
rs.close
'set rs=nothing
if filename1<>"" then xup.SaveFile "file1",filepath&vfname&filename1
set xup=nothing
'set rs=server.createobject("ADODB.recordset")
sql="select * from meetuser"
rs.Open sql,conn,1,3
mysendto=split(joinman,"|",-1,1)
for each sendtoinf in mysendto
if trim(sendtoinf)<>"" then
set rs1=server.createobject("ADODB.recordset")
sql="select * from userinf where username='"&trim(sendtoinf)&"'"
rs1.Open sql,conn,1,3
rs.addnew
rs("username")=sendtoinf
if not rs1.EOF then rs("name")=rs1("name")
rs("qshou")=0
rs("qdao")=0
rs("reid")=id
rs("meetname")=meetname
rs.update
rs1.Close
set rs1=nothing
end if
next
rs.close
set rs=nothing
set conn=nothing
%>
<br><br>
<center>发布会议通知完成</center><a href="newmeet.asp">返回</a>
<%
end if
%>
</body>
</html> <!--#include file="footer.htm"-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -