|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。在线 ASP进阶之文章在线办理更新--文章修正篇
作者:沙岸小子
上一节咱们讲了文章的在线删除的详细完成办法,在这里我将为人人引见关于文章办理体系的在线修正。在本体系中,供应在线修正是一项必不成少的内容,由于当人人在网上更新文章的时分,总会碰上如许那样的成绩,一个不当心就会形成添加的掉误,有时分是内容不全,也有多是文章的栏目本来添加的时分选错了,同时也就是如许那样的毛病才显得这个法式的需要性。
文章的在线修正保留的法式其实和文章的添加和保留法式差不多,只是这里是对数据库停止更新,而文章添加则是对数据库停止新增纪录,不外从整体下去说仍是差不多的,所以这里我只是对那些两个法式的分歧点停止注解,其他如果人人有甚么不分明的中央可以看看本专题的第2、三节,上面就来为人人引见完成这一功效的进程:
(1).文件edit.asp,这个文件没有甚么好讲的了,由于根基上和本体系的addarticle.asp法式是不异的,只要在文章题目和文章内容局部取了响应的数据库内容,以便利人人参考修正。
<!--#include file="conn.asp"-->
<%
if request.cookies("adminok")="" then
response.redirect "login.asp"
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<link rel="stylesheet" type="text/CSS" href="style.css">
<title>修正文章</title>
</head>
<body>
<form method="POST" action="saveedit.asp?id=<%=request("id")%>">
<div align="center"><center><table border="1" cellspacing="0" width="80%" bordercolorlight="#000000" bordercolordark="#FFFFFF" cellpadding="0">
<tr>
<td width="100%" bgcolor="#D0D0D0" height="20"><div align="center"><center><p><b>修 改 文 章</b></td>
</tr>
<tr align="center">
<td width="100%"><table border="0" cellspacing="1" width="100%">
<%
dim sql
dim rs
sql="select * from article where articleid="&request("id")
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
%>
<tr>
<td width="15%" align="right" height="30"><b>文章题目:</b></td>
<td width="85%" height="30"><input type="text" name="txttitle" size="70"
class="smallinput" maxlength="100" value="<%=rs("title")%>"></td>
</tr>
<tr>
<td width="15%" align="right" valign="top"><b>文章内容:</b></td>
<td width="85%"><textarea rows="15" name="txtcontent" cols="70" class="smallarea"><%content=replace(rs("content"),"<br>",chr(13))
content=replace(content," "," ")
response.write content%></textarea></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" height="20"></td>
<td width="85%"></td>
</tr>
</table>
</td>
</tr>
</table>
</center></div><div align="center"><center><p><input type="submit" value=" 修 改 "
name="cmdok" class="buttonface"> <input type="reset" value=" 复 原 "
name="cmdcancel" class="buttonface"></p>
</center></div>
</form>
</body>
</html>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
(2).文件SaveEdit.asp,这里的保留修正文件也和添加文章中的保留差不多,只不外它是对数据库停止更新,而添加文章中的保留是对数据库停止添加新纪录操作。
"翻开数据库毗连
<!--#include file="conn.asp"-->
"翻开对文章内容的代码停止转化文件
<!--#include file="inc/articlechar.inc"-->
<%
if request.cookies("adminok")="" then
response.redirect "login.asp"
end if
%>
<%
dim typename
dim title
dim content
dim sql
dim rs
dim articleid
title=htmlencode2(request.form("txttitle"))
content=htmlencode2(request.form("txtcontent"))
articleid=request("id")
"翻开数据库指定纪录集中的指定纪录,并对其停止更新操作
set rs=server.createobject("adodb.records</p> Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来; |
|