欢迎光临
我们一直在努力

ASP进阶之文章在线管理更新(九)

建站超值云服务器,限时71元/月

asp进阶之文章在线管理更新–管理页面篇

作者:沙滩小子

前面讲述了关于文章管理系统的密码及密码验证,通过密码验证可以限制一般浏览者所能进入的页面,这里所要限制的就是普通用户所不能进入的页面,也就是包括管理页面、删除文章页面、修改文章页面以及修改用户信息和修改栏目信息的页面。其实这里的主管理页面就是和文章管理系统的主页面类似的页面,只是在里面添加了一些有关管理内容的连接,以方便管理者对文章进行在线的修改删除等操作。

下面就为大家介绍这一页面的主要程序内容,由于它和文章管理的主页面差不多,所以这里只是把其程序写出来,并注明和主页面不同的地方,其他相同的部分请大家参考本专题的第七节!

文件manage.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">

<title>asp技巧专题</title>

<meta name="generator" content="microsoft frontpage 3.0">

<link rel="stylesheet" type="text/css" href="style.css">

<script language="javascript">

function popwin2(id,path)

{ window.open("openarticle.asp?id="+id+"&ppath="+path,"","height=450,width=600,resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");

}

</script>

</head>

<%

const maxperpage=18

dim totalput

dim currentpage

dim totalpages

dim i,j

if not isempty(request("page")) then

currentpage=cint(request("page"))

else

currentpage=1

end if

dim sql

dim rs

dim rstype

dim typesql

dim typeid,typename

if not isempty(request("typeid")) then

typeid=request("typeid")

else

typeid=1

end if

set rstype=server.createobject("adodb.recordset")

typesql="select * from type where typeid="&cstr(typeid)

rstype.open typesql,conn,1,1

if not rstype.eof then

typename=rstype("type")

end if

rstype.close

set rstype=nothing

%>

<body>

<div align="center"><center>

<table border="0" width="92%" cellspacing="0" cellpadding="0">

<tr>

<td width="100%" style="border-left: thin dotted rgb(0,128,0); border-right: thin dotted rgb(0,128,0)"><p align="center"><br>

动网asp技巧专题&gt;&gt;<font color="#ff0000"><%response.write ""&typename&""%></font><br>

<center>

<a href="manage.asp?typeid=1">asp教程</a>|<a href="manage.asp?typeid=2">asp faq</a>|<a href="manage.asp?typeid=3">asp文摘</a>

|<a href="manage.asp?typeid=4">asp实例</a>|<a href="manage.asp?typeid=5">asp安全</a>|

"显示系统管理页面相关连接,用于修改管理员密码名称以及增加修改删除栏目,这个在后面将有介绍

<a href="changepass.asp" title="用于修改管理员密码名称以及增加修改删除栏目"><font color=red>管理页面</font></a>

<div align="center"><%

sql="select * from article where typeid="+cstr(typeid)+" order by data desc"

set rs= server.createobject("adodb.recordset")

rs.open sql,conn,1,1

if rs.eof and rs.bof then

response.write "<p align=center> 还 没 有 任 何 文 章</p>"

else

totalput=rs.recordcount

totalput=rs.recordcount

if currentpage<1 then

currentpage=1

end if

if (currentpage-1)*maxperpage>totalput then

if (totalput mod maxperpage)=0 then

currentpage= totalput \ maxperpage

else

currentpage= totalput \ maxperpage + 1

end if

end if

if currentpage=1 then

showpage totalput,maxperpage,"manage.asp"

showcontent

showpage totalput,maxperpage,"manage.asp"

else

if (currentpage-1)*maxperpage<totalput then

rs.move (currentpage-1)*maxperpage

dim bookmark

bookmark=rs.bookmark

showpage totalput,maxperpage,"manage.asp"

showcontent

showpage totalput,maxperpage,"manage.asp"

else

currentpage=1

showpage totalput,maxperpage,"manage.asp"

showcontent

showpage totalput,maxperpage,"manage.asp"

end if

end if

rs.close

end if

set rs=nothing

conn.close

set conn=nothing

sub showcontent

dim i

i=0

%>

<div align="center"><center><table border="1" cellspacing="0" width="589" bordercolorlight="#000000" bordercolordark="#ffffff" cellpadding="0">

<tr>

<td width="46" align="center" bgcolor="#d0d0d0" height="20"><strong>id号</strong></td>

<td width="400" align="center" bgcolor="#d0d0d0"><strong>文章标题</strong></td>

<td width="69" align="center" bgcolor="#d0d0d0"><strong>修改</strong></td>

<td width="68" align="center" bgcolor="#d0d0d0"><strong>删除</strong></td>

</tr>

<%do while not rs.eof%>

<tr>

<td height="23" width="46"><p align="center"><%=rs("articleid")%></td>

<td width="400"><p align="center"><a href="javascript:popwin2(<%=rs("articleid")%>)"><%=rs("title")%></a></td>

"显示与修改删除的相关连接,具体程序在后面章节将有介绍

<td width="69"><p align="center"><a

href="edit.asp?id=<%=rs("articleid")%>">修改</a></td>

<td width="68"><p align="center"><a

href="delete.asp?id=<%=rs("articleid")%>">删除</a></td>

</tr>

<% i=i+1

if i>=maxperpage then exit do

rs.movenext

loop

%>

</table>

</center></div><%

end sub

function showpage(totalnumber,maxperpage,filename)

dim n

if totalnumber mod maxperpage=0 then

n= totalnumber \ maxperpage

else

n= totalnumber \ maxperpage+1

end if

response.write "<form method=post action="&filename&"?typeid="&typeid&">"

"显示增加文章相关连接,关于添加文章在本专题的第一、二节有介绍

response.write "<p align=center><a href=addarticle.asp?typeid="&typeid&"><font color=red>增加文章</font></a>&nbsp;"

if currentpage<2 then

response.write "<font color=#000080>首页 上一页</font>&nbsp;"

else

response.write "<a href="&filename&"?page=1&typeid="&typeid&">首页</a>&nbsp;"

response.write "<a href="&filename&"?page="&currentpage-1&"&typeid="&typeid&">上一页</a>&nbsp;"

end if

if n-currentpage<1 then

response.write "<font color=#000080>下一页 尾页</font>"

else

response.write "<a href="&filename&"?page="&(currentpage+1)&"&typeid="&typeid&">"

response.write "下一页</a> <a href="&filename&"?page="&n&"&typeid="&typeid&">尾页</a>"

end if

response.write "<font color=#000080>&nbsp;页次:</font><strong><font color=red>"&currentpage&"</font><font color=#000080>/"&n&"</strong>页</font> "

response.write "<font color=#000080>&nbsp;共<b>"&totalnumber&"</b>篇文章 <b>"&maxperpage&"</b>篇文章/页</font> "

response.write " <font color=#000080>转到:</font><input type=text name=page size=4 maxlength=10 class=smallinput value="&currentpage&">"

response.write "<input class=buttonface type=submit value=goto name=cndok></span></p></form>"

end function

%>

</div></td>

</tr>

</table>

</center></div>

</body>

</html>

关于管理页面的程序就是这样的了,有什么不清楚的地方可以参考本专题的第八节,由于其内容类似,这里就不多说了,有什么问题可以给我email:wodeail@etang.com。下一章节就为大家介绍文章管理的文章在线删除篇。

转载请注明出处http://asky.on.net.cn

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP进阶之文章在线管理更新(九)
分享到: 更多 (0)

相关推荐

  • 暂无文章