📄 admin_articlesave.asp
字号:
<%@language=vbscript codepage=936 %>
<%
option explicit
response.buffer=true
Const PurviewLevel=5 '操作权限
%>
<!--#include file="Admin_ChkPurview.asp"-->
<!--#include file="inc/conn.asp"-->
<!--#include file="inc/config.asp"-->
<!--#include file="inc/ubbcode.asp"-->
<!--#include file="inc/function.asp"-->
<!--#include file="inc/admin_code.asp"-->
<%
dim Action,rs,sql,ErrMsg,FoundErr,ObjInstalled
dim ArticleID,ClassID,SpecialID,Title,Content,key,Author,CopyFrom,UpdateTime,Hits,Editor
dim IncludePic,DefaultPicUrl,UploadFiles,Passed,OnTop,Hot,Elite,arrUploadFiles
dim TitleFontColor,TitleFontType,AuthorName,AuthorEmail,CopyFromName,CopyFromUrl,PaginationType,ReadLevel,ReadPoint,Stars,SkinID,LayoutID,MaxCharPerPage
dim tClass,ClassName,Depth,ParentPath,Child,i
ObjInstalled=IsObjInstalled("Scripting.FileSystemObject")
FoundErr=false
Action=trim(request("Action"))
ArticleID=Trim(Request.Form("ArticleID"))
ClassID=trim(request.form("ClassID"))
SpecialID=trim(request.Form("SpecialID"))
Title=trim(request.form("Title"))
TitleFontColor=trim(request.form("TitleFontColor"))
TitleFontType=trim(request.form("TitleFontType"))
Key=trim(request.form("Key"))
Content=trim(request.form("Content"))
Author=trim(request.form("Author"))
AuthorName=trim(request.form("AuthorName"))
AuthorEmail=trim(request.form("AuthorEmail"))
CopyFrom=trim(request.form("CopyFrom"))
CopyFromName=trim(request.form("CopyFromName"))
CopyFromUrl=trim(request.form("CopyFromUrl"))
UpdateTime=trim(request.form("UpdateTime"))
IncludePic=trim(request.form("IncludePic"))
DefaultPicUrl=trim(request.form("DefaultPicUrl"))
UploadFiles=trim(request.form("UploadFiles"))
Passed=trim(request.form("Passed"))
OnTop=trim(request.form("OnTop"))
Hot=trim(request.form("Hot"))
Elite=trim(request.form("Elite"))
Hits=trim(request.form("Hits"))
Editor=trim(session("Admin"))
PaginationType=trim(request.form("PaginationType"))
MaxCharPerPage=trim(request.form("MaxCharPerPage"))
ReadLevel=trim(request.form("ReadLevel"))
ReadPoint=trim(request.form("ReadPoint"))
Stars=trim(request.form("Stars"))
SkinID=trim(request.form("SkinID"))
LayoutID=trim(request.form("LayoutID"))
if Action="" then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>参数不足</li>"
else
call SaveArticle()
end if
if founderr=true then
call WriteErrMsg()
else
call SaveSuccess()
end if
call CloseConn()
sub SaveArticle()
if ClassID="" then
founderr=true
errmsg=errmsg & "<br><li>未指定文章所属栏目或者指定的栏目有下属子栏目</li>"
else
ClassID=CLng(ClassID)
if ClassID<=0 then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>指定了非法的栏目(外部栏目或不存在的栏目)</li>"
else
set tClass=conn.execute("select ClassName,Depth,ParentPath,Child,LinkUrl From ArticleClass where ClassID=" & ClassID)
if tClass.bof and tClass.eof then
FounErr=True
ErrMsg=ErrMsg & "<br><li>找不到指定的栏目</li>"
else
ClassName=tClass(0)
Depth=tClass(1)
ParentPath=tClass(2)
Child=tClass(3)
if Child>0 then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>指定的栏目有下属子栏目</li>"
end if
if tClass(4)<>"" then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>不能指定外部栏目</li>"
end if
end if
end if
end if
if Title="" then
founderr=true
errmsg=ErrMsg & "<br><li>文章标题不能为空</li>"
end if
if Key="" then
founderr=true
errmsg=errmsg & "<br><li>请输入文章关键字</li>"
end if
if Content="" then
founderr=true
errmsg=errmsg & "<br><li>文章内容不能为空</li>"
end if
if SkinID="" then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>请指定默认配色模板</li>"
else
SkinID=Clng(SkinID)
end if
if LayoutID="" then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>请指定默认版面设计模板</li>"
else
LayoutID=Clng(LayoutID)
end if
if PaginationType="" then
PaginationType=0
else
PaginationType=Cint(PaginationType)
end if
if MaxCharPerPage="" then
MaxCharPerPage=0
else
MaxCharPerPage=CLng(MaxCharPerPage)
end if
if PaginationType=1 and MaxCharPerPage=0 then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>请指定自动分页时的每页大约字符数,必须大于0</li>"
end if
if FoundErr=True then
exit sub
end if
if SpecialID="" then
SpecialID=0
else
SpecialID=CLng(SpecialID)
end if
Title=dvhtmlencode(Title)
if TitleFontType="" then
TitleFontType=0
end if
Key="|" & ReplaceBadChar(Key) & "|"
dim strSiteUrl
strSiteUrl=request.ServerVariables("HTTP_REFERER")
strSiteUrl=lcase(left(strSiteUrl,instrrev(strSiteUrl,"/")))
Content=ubbcode(replace(Content,strSiteUrl,""))
if Author<>"" then
Author=dvhtmlencode(Author)
else
if AuthorName="" and AuthorEmail="" then
Author="佚名"
else
if AuthorName<>"" then
Author=AuthorName
if AuthorEmail<>"" then
Author=Author & "|" & AuthorEmail
end if
end if
end if
end if
if CopyFrom<>"" then
CopyFrom=dvhtmlencode(CopyFrom)
else
if CopyFromName="" and CopyFromUrl="" then
CopyFrom="本站原创"
else
if CopyFromName<>"" then
CopyFrom=CopyFromName
if CopyFromUrl<>"" then
CopyFrom=CopyFrom & "|" & CopyFromUrl
end if
end if
end if
end if
if UpdateTime<>"" and IsDate(UpdateTime)=true then
UpdateTime=CDate(UpdateTime)
else
UpdateTime=now()
end if
if Hits<>"" then
Hits=CLng(Hits)
else
Hits=0
end if
if ReadLevel="" then
ReadLevel=9999
else
ReadLevel=CInt(ReadLevel)
end if
if ReadPoint="" then
ReadPoint=0
else
ReadPoint=Cint(ReadPoint)
end if
if Stars="" then
Stars=0
else
Stars=CInt(Stars)
end if
set rs=server.createobject("adodb.recordset")
if Action="Add1" or Action="Add2" then
sql="select top 1 * from article"
rs.open sql,conn,1,3
rs.addnew
call SaveData()
rs("Editor")=Editor
rs.update
ArticleID=rs("ArticleID")
rs.close
elseif Action="Modify" then
if ArticleID="" then
founderr=true
errmsg=errmsg & "<br><li>不能确定ArticleID的值</li>"
else
ArticleID=Clng(ArticleID)
sql="select * from article where articleid=" & ArticleID
rs.open sql,conn,1,3
if rs.bof and rs.eof then
founderr=true
errmsg=errmsg & "<br><li>找不到此文章,可能已经被其他人删除。</li>"
else
call SaveData()
rs.update
rs.close
end if
end if
else
FoundErr=True
ErrMsg="<br><li>参数错误!</li>"
end if
set rs=nothing
end sub
sub SaveData()
rs("ClassID")=ClassID
rs("SpecialID")=SpecialID
rs("Title")=Title
rs("TitleFontColor")=TitleFontColor
rs("TitleFontType")=TitleFontType
rs("Content")=Content
rs("Key")=Key
rs("Hits")=Hits
rs("Author")=Author
rs("CopyFrom")=CopyFrom
if IncludePic="yes" then
rs("IncludePic")=True
else
rs("IncludePic")=False
end if
if Passed="yes" then
rs("Passed")=True
else
if EnableArticleCheck="No" then
rs("Passed")=True
else
rs("Passed")=False
end if
end if
if OnTop="yes" then
rs("OnTop")=True
else
rs("OnTop")=False
end if
if Hot="yes" then
rs("Hot")=True
else
rs("Hot")=False
end if
if Elite="yes" then
rs("Elite")=True
else
rs("Elite")=False
end if
rs("Stars")=Stars
rs("UpdateTime")=UpdateTime
rs("PaginationType")=PaginationType
rs("MaxCharPerPage")=MaxCharPerPage
rs("ReadLevel")=ReadLevel
rs("ReadPoint")=ReadPoint
rs("SkinID")=SkinID
rs("LayoutID")=LayoutID
'***************************************
'删除无用的上传文件
if ObjInstalled=True and UploadFiles<>"" then
dim fso,strRubbishFile
Set fso = Server.CreateObject("Scripting.FileSystemObject")
if instr(UploadFiles,"|")>1 then
dim arrUploadFiles,intTemp
arrUploadFiles=split(UploadFiles,"|")
UploadFiles=""
for intTemp=0 to ubound(arrUploadFiles)
if instr(Content,arrUploadFiles(intTemp))<=0 and arrUploadFiles(intTemp)<>DefaultPicUrl then
strRubbishFile=server.MapPath("" & arrUploadFiles(intTemp))
if fso.FileExists(strRubbishFile) then
fso.DeleteFile(strRubbishFile)
response.write "<br><li>" & arrUploadFiles(intTemp) & "在文章中没有用到,也没有被设为首页图片,所以已经被删除!</li>"
end if
else
if intTemp=0 then
UploadFiles=arrUploadFiles(intTemp)
else
UploadFiles=UploadFiles & "|" & arrUploadFiles(intTemp)
end if
end if
next
else
if instr(Content,UploadFiles)<=0 and UploadFiles<>DefaultPicUrl then
strRubbishFile=server.MapPath("" & UploadFiles)
if fso.FileExists(strRubbishFile) then
fso.DeleteFile(strRubbishFile)
response.write "<br><li>" & UploadFiles & "在文章中没有用到,也没有被设为首页图片,所以已经被删除!</li>"
end if
UploadFiles=""
end if
end if
set fso=nothing
end If
'结束
'***************************************
rs("DefaultPicUrl")=DefaultPicUrl
rs("UploadFiles")=UploadFiles
end sub
sub SaveSuccess()
%>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="Admin_Style.css">
</head>
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="0">
<br><br>
<table class="border" align=center width="400" border="0" cellpadding="0" cellspacing="0" bordercolor="#999999">
<tr align=center>
<td height="22" align="center" class="title"><b>
<%if action="Add1" or Action="Add2" then%>
添加
<%else%>
修改
<%end if%>
文章成功</b></td>
</tr>
<%if Passed<>"yes" then%>
<tr class="tdbg">
<td height="60"><font color="#0000FF">注意:</font><br>
你的文章尚未真正发表!只有等管理员审核并通过了你的文章后,你所添加的文章才会发表。</td>
</tr>
<%end if%>
<tr>
<td><table width="100%" border="0" cellpadding="2" cellspacing="1">
<tr class="tdbg">
<td width="100" align="right"><strong>所属栏目:</strong></td>
<td><%call Admin_ShowPath2(ParentPath,ClassName,Depth)%></td>
</tr>
<tr class="tdbg">
<td width="100" align="right"><strong>文章标题:</strong></td>
<td><%= Title %></td>
</tr>
<tr class="tdbg">
<td width="100" align="right"><strong>作 者:</strong></td>
<td><%= Author %></td>
</tr>
<tr class="tdbg">
<td width="100" align="right"><strong>转 贴 自:</strong></td>
<td><%= CopyFrom %></td>
</tr>
<tr class="tdbg">
<td width="100" align="right"><strong>关 键 字:</strong></td>
<td><%= mid(Key,2,len(Key)-2) %></td>
</tr>
</table></td>
</tr>
<tr class="tdbg">
<td height="30" align="center">【<a href="Admin_ArticleModify.asp?ArticleID=<%=ArticleID%>">修改本文</a>】 【<a href="<%if Action="Add1" then%>Admin_ArticleAdd1.asp<%else%>Admin_ArticleAdd2.asp<%end if%>">继续添加文章</a>】 【<a href="Admin_ArticleManage.asp">文章管理</a>】 【<a href="Admin_ArticleShow.asp?ArticleID=<%=ArticleID%>">预览文章内容</a>】</td>
</tr>
</table>
</body>
</html>
<%
session("ClassID")=ClassID
session("SpecialID")=SpecialID
session("Key")=trim(request("Key"))
session("Author")=Author
session("AuthorName")=AuthorName
session("AuthorEmail")=AuthorEmail
session("CopyFrom")=CopyFrom
session("CopyFromName")=CopyFromName
session("CopyFromUrl")=CopyFromUrl
session("PaginationType")=PaginationType
session("ReadLevel")=ReadLevel
session("ReadPoint")=ReadPoint
session("SkinID")=SkinID
session("LayoutID")=LayoutID
end sub
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -