user_articlemodify.asp
来自「利用C++编写的网络跟踪代码」· ASP 代码 · 共 311 行 · 第 1/2 页
ASP
311 行
<%@language=vbscript codepage=936 %>
<%
option explicit
response.buffer=true
%>
<!--#include file="inc/conn.asp"-->
<!--#include file="inc/Conn_User.asp"-->
<!--#include file="inc/function.asp"-->
<!--#include file="inc/config.asp"-->
<!--#include file="inc/admin_code_article.asp"-->
<%
if CheckUserLogined()=False then
response.Redirect "User_Login.asp"
end if
dim ArticleID,rs,sql,rsArticle,FoundErr,ErrMsg,PurviewChecked
dim Author,AuthorName,AuthorEmail,CopyFrom,CopyFromName,CopyFromUrl
ArticleID=trim(request("ArticleID"))
FoundErr=False
if ArticleID="" then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>请指定要修改的文章ID</li>"
call WriteErrMsg()
call CloseConn()
response.end
else
ArticleID=Clng(ArticleID)
end if
sql="select * from article where ArticleID=" & ArticleID & ""
Set rsArticle= Server.CreateObject("ADODB.Recordset")
rsArticle.open sql,conn,1,1
if rsArticle.bof and rsArticle.eof then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>找不到文章</li>"
else
if rsArticle("Editor")=request.Cookies("asp163")("UserName") then
if rsArticle("Passed")=True then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>文章已经被审核通过,你不能再进行修改!</li>"
end if
else
FoundErr=True
ErrMsg=ErrMsg & "<br><li>你不能修改其他人的文章!</li>"
end if
end if
if FoundErr=True then
call WriteErrMsg()
else
Author=rsArticle("Author")
CopyFrom=rsarticle("CopyFrom")
if instr(Author,"|")>0 then
AuthorName=left(Author,instr(Author,"|")-1)
AuthorEmail=right(Author,len(Author)-instr(Author,"|"))
else
AuthorName=Author
AuthorEmail=""
end if
if instr(CopyFrom,"|")>0 then
CopyFromName=left(CopyFrom,instr(CopyFrom,"|")-1)
CopyFromUrl=right(CopyFrom,len(CopyFrom)-instr(CopyFrom,"|"))
else
CopyFromName=CopyFrom
CopyFromUrl=""
end if
dim ClassID,tClass,ClassName,RootID,ParentID,Depth,ParentPath
ClassID=rsArticle("ClassID")
set tClass=conn.execute("select ClassName,RootID,ParentID,Depth,ParentPath From ArticleClass where ClassID=" & ClassID)
ClassName=tClass(0)
RootID=tClass(1)
ParentID=tClass(2)
Depth=tClass(3)
ParentPath=tClass(4)
set tClass=nothing
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>修改文章</title>
<link rel="stylesheet" type="text/css" href="Admin_style.css">
<script language = "JavaScript">
function AddItem(strFileName){
document.myform.IncludePic.checked=true;
document.myform.DefaultPicUrl.value=strFileName;
document.myform.DefaultPicList.options[document.myform.DefaultPicList.length]=new Option(strFileName,strFileName);
document.myform.DefaultPicList.selectedIndex+=1;
if(document.myform.UploadFiles.value==''){
document.myform.UploadFiles.value=strFileName;
}
else{
document.myform.UploadFiles.value=document.myform.UploadFiles.value+"|"+strFileName;
}
}
function selectPaginationType()
{
document.myform.PaginationType.selectedIndex=2;
}
function CheckForm()
{
if (editor.EditMode.checked==true)
document.myform.Content.value=editor.HtmlEdit.document.body.innerText;
else
document.myform.Content.value=editor.HtmlEdit.document.body.innerHTML;
if (document.myform.Title.value=="")
{
alert("文章标题不能为空!");
document.myform.Title.focus();
return false;
}
if (document.myform.Key.value=="")
{
alert("关键字不能为空!");
document.myform.Key.focus();
return false;
}
if (document.myform.Content.value=="")
{
alert("文章内容不能为空!");
editor.HtmlEdit.focus();
return false;
}
if (document.myform.Content.value.length>65536)
{
alert("文章内容太长,超出了ACCESS数据库的限制(64K)!建议将文章分成几部分录入。");
editor.HtmlEdit.focus();
return false;
}
return true;
}
</script>
</head>
<body leftmargin="5" topmargin="10">
<form method="POST" name="myform" onSubmit="return CheckForm();" action="User_ArticleSave.asp?action=Modify">
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="20" background="imge/atopa.gif"> <div align="center"><b>修 改
文 章</b></div></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="11"></td>
</tr>
</table>
<table width="760" border="0" align="center" cellpadding="1" cellspacing="1" class="border">
<tr align="center">
<td class="tdbg"> <table width="100%" border="0" cellpadding="2" cellspacing="1">
<tr class="tdbg">
<td width="120" align="right"><strong>所属栏目: </strong></td>
<td><%call Admin_ShowPath2(ParentPath,ClassName,Depth)
response.write "<input type='hidden' name='ClassID' value='" & rsArticle("ClassID") & "'>"%></td>
</tr>
<tr class="tdbg">
<td width="120" align="right"><strong>所属专题: </strong></td>
<td><%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?