Board logo

标题: [毕业论文] [原创]网站后台管理系统 [打印本页]

作者: giantling    时间: 2006-6-5 09:22     标题: [原创]网站后台管理系统

4.2.4新闻管理模块设计
为了使网站工作人员更加方便快捷的对该网站有关的广告进行统一的管理,设计了该模块,此模块具有对公司新闻和业内咨询的添加、删除、修改的功能。
文件名为:manage_news.asp,具体显示如图4-4所示。
图4-4 新闻管理页面在浏览器中运行的结果
部分代码如下:
<%
set rs=server.createobject("adodb.recordset")
sqltext="select * from conews order by id desc"
rs.open sqltext,conn,1,1
dim maxperpage
maxperpage=20
dim text,checkpage
text="0123456789"
rs.pagesize=maxperpage
for i=1 to len(request("page"))
checkpage=instr(1,text,mid(request("page"),i,1))
if checkpage=0 then
exit for
end if
next
if checkpage<>0 then
if not isempty(request("page")) then
currentpage=cint(request("page"))
if currentpage < 1 then currentpage = 1
if currentpage > rs.pagecount then currentpage = rs.pagecount
else
currentpage= 1
end if
if not rs.eof then rs.absolutepage = currentpage end if
else
currentpage=1
end if
call showpages
call list
if rs.recordcount > maxperpage then
call showpages
end if
'显示帖子的子程序
sub list()%>
<!-- #include file="inc/head.asp" -->
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="150" align="center" valign="top"> <table width="150" height="100%" border="0" cellpadding="0" cellspacing="0" class="headertdstyle">
        <tr>
          <td align="center" valign="top"><table width="100%" height="24" border="0" cellpadding="0" cellspacing="0">
              <tr> <td align="center">功能菜单</td></tr>
            </table>
            <table width="100%" height="90%" border="0" cellpadding="0" cellspacing="0" class="menubg">
              <tr>
                <td align="center" valign="top">
<table width="90%" border="0" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="16%"><img src="../img/left_1.gif" width="28" height="11"></td>
                      <td width="84%" height="20"><font color="#ffff00">新闻管理</font></td>
                    </tr>
                  </table>
                  <table width="90%" border="0" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="34%" height="20" align="right"><img src="../img/left_1_1.gif" width="29" height="16"></td>
                      <td width="66%" valign="bottom"><a href="manage_news.asp"><font color="#ffff00">公司新闻管理</font></a></td>
                    </tr></table>
                   <table width="90%" border="0" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="34%" height="20" align="right"><img src="../img/left_1_1.gif" width="29" height="16"></td>
                      <td width="66%" valign="bottom"><a href="manage_newsadd.asp"><font color="#ffff00">添加公司新闻</font></a></td>
                    </tr>
                  </table>
                  <table width="90%" border="0" cellpadding="0" cellspacing="0">
                    <tr> <td width="34%" height="20" align="right"><img src="../img/left_1_1.gif" width="29" height="16"></td>
                      <td width="66%" valign="bottom"><a href="manage_yenews.asp"><font color="#ffff00">业内资讯管理</font></a></td>
                    </tr></table>
                  <table width="90%" border="0" cellpadding="0" cellspacing="0">
                    <tr> <td width="34%" height="20" align="right"><img src="../img/left_1_1.gif" width="29" height="16"></td>
                      <td width="66%" valign="bottom"><a href="manage_yenewsadd.asp"><font color="#ffff00">添加业内资讯</font></a></td>
                    </tr>
                  </table></td>
              </tr>
            </table></td>
        </tr>
      </table></td>
    <td align="center" valign="top">
       
      <strong>
      </strong>
      
<table width="550" border="0" cellspacing="0" cellpadding="0">
        <tr> <td height="25"> <div align="center"><strong>新闻管理
              
</strong></div></td>
        </tr>
        <tr> <td><div align="center">
              <table width="100%" border="0" cellspacing="2" cellpadding="3">
                <tr bgcolor="#c0c0c0">
                  <td width="8%" height="25" bgcolor="#c0c0c0"> <div align="center">id</div></td>
                  <td width="62%"> <div align="center">新闻标题</div></td>
                  <td width="10%"> <div align="center">操作</div></td>
                  <td width="10%"> <div align="center">操作</div></td>
                  <td width="10%"> <div align="center">操作</div></td>
                </tr>
<%
if not rs.eof then
i=0
do while not rs.eof
%>
<tr bgcolor="#e3e3e3">
                  <td height="22"> <div align="center"><%=rs("id")%></div></td>
                  <td>  <%=rs("title")%></td>
                  <td> <div align="center"><a href=../newsinfo.asp?id=<%=rs("id")%> target="_blank">查看</a></div></td>
                  <td bgcolor="#e3e3e3">
                    <div align="center"><a href="manage_editnews.asp?id=<%=rs("id")%>">修改</a></div></td>
                  <td> <div align="center"><a href="manage_news.asp?id=<%=rs("id")%>&amp;no=eshop">删除</a></div></td>
                </tr>
<%
i=i+1
if i >= maxperpage then exit do
rs.movenext
loop
end if
%>
                <tr bgcolor="#c0c0c0">
                  <td height="25" colspan="5">   <%
response.write "<strong><font color='#000000'>-> 全部-</font>"
response.write "共</font>" & "<font color=#ff0000>" & cstr(rs.recordcount) & "</font>" & "<font color='#000000'>条新闻</font></strong>          "
response.write "<strong><font color='#000000'>第</font>" & "<font color=#ff0000>" & cstr(currentpage) &  "</font>" & "<font color='#000000'>/" & cstr(rs.pagecount) & "</font></strong> "
if currentpage > 1 then
response.write "<strong><a href='manage_news.asp?&page="+cstr(1)+"'><font color='#000000'>首页</font></a><font color='#ffffff'> </font></strong>"
response.write "<strong><a href='manage_news.asp?page="+cstr(currentpage-1)+"'><font color='#000000'>上一页</font></a><font color='#ffffff'> </font></strong>"
else
response.write "<strong><font color='#000000'>上一页 </font></strong>"
end if
if currentpage < rs.pagecount then
response.write "<strong><a href='manage_news.asp?page="+cstr(currentpage+1)+"'><font color='#000000'>下一页</font></a><font color='#ffffff'> </font>"
response.write "<a href='manage_news.asp?page="+cstr(rs.pagecount)+"'><font color='#000000'>尾页</font></a></strong>  "
else
response.write ""
response.write "<strong><font color='#000000'>下一页</font></strong>  "
end if
'response.write "</td><td align='right'>"
'response.write "<font color='#000000' >转到:</font><input type='text' name='page' size=4 maxlength=4 class=smallinput value="&currentpage&"> "
'response.write "<input class=buttonface type='submit'  value='go'  name='cndok'>  "
%></td></tr></table>
<%
end sub
rs.close
%>
     </div></td></tr>
      </table>
      
      
    </td></tr>
</table>
<!-- #include file="inc/foot.asp" -->

4.2.5产品管理模块设计
这个模块是管理产品信息,包括:对产品类别的设置(大类及小类的添加、修改和删除操作),新产品的添加,对已有产品的修改和删除,对产品的审核。其文件名为articlemanage.asp。具体显示如图4-5所示。
图4-5 产品管理页面在浏览器里运行的结果

4.2.6注册会员管理模块
在该页面中,管理员可以修改和删除在主页注册的会员资料。具体显示如图4-6所示。
图4-6 注册会员管理页面在浏览器中运行的结果
4.2.7留言管理模块
这个模块有管理留言板信息功能,对客户的留言进行修改和删除操作。同时,还可以发布管理员公告。具体显示如图4-7所示。
图4-7 留言管理页面在浏览器中运行的结果
4.2.8人才管理模块设计
人才管理模块包括,招聘管理,发布招聘和应聘管理,通过该模块,公司可以发布招聘信息,修改已有的招聘信息及删除不需要的招聘信息。还可以对来应聘的信息进行审核和筛选,以便找到符合公司需要的人才。具体显示如图4-8所示。
图4-8 人才管理页面在浏览器中运行的结果
4.2.9订单管理模块设计
这部分是管理客户的订单,可以查看订单的审核情况和订单的具体内容,还可以对订单进行删除操作。具体显示如图4-9所示。
图4-9 订单管理页面在浏览器中运行的结果
由于后面几个部分的代码和新闻管理模块的很相似,这里就不一一列出了。
作者: giantling    时间: 2006-6-5 09:22

有需要的留下邮箱
作者: shuanger    时间: 2006-6-5 11:06


作者: clamp    时间: 2006-6-6 17:26


作者: tyq168    时间: 2006-6-7 02:14

帅死了,一定不错呵
作者: duola    时间: 2006-6-7 10:00

怎么jsp的这么少!
作者: duola    时间: 2006-6-7 10:01

为什么回复了还看不见!
作者: 蓝透    时间: 2006-6-7 15:13


作者: yygy05    时间: 2006-6-9 21:07


作者: yyffzz    时间: 2006-6-11 13:43


作者: idtbbsb    时间: 2006-6-11 15:26


作者: hnlee    时间: 2006-6-11 19:50


作者: xiluo1314    时间: 2006-6-12 16:36


作者: jj49    时间: 2006-6-13 09:47


作者: jj49    时间: 2006-6-13 09:48

回了;还是看不到啊
作者: jj49    时间: 2006-6-13 10:14

weism kan bu dao
作者: amy0_wang    时间: 2006-8-22 18:10


作者: raotingalsq    时间: 2006-11-11 23:40


作者: 欢迎麒麟    时间: 2006-11-23 19:39


作者: sdkdming    时间: 2006-12-2 17:49


作者: sdkdming    时间: 2006-12-2 17:52

我要
sdkdming@163.com


作者: daling2kc1    时间: 2006-12-4 17:58

fdsgdsg
作者: gdcpbaby    时间: 2006-12-5 12:50

ding
作者: 87225430    时间: 2006-12-6 17:11


作者: zgg0106    时间: 2006-12-18 15:05


作者: scorlett    时间: 2006-12-27 11:36


作者: alone510    时间: 2007-1-6 02:03


作者: eagle4125    时间: 2007-1-9 11:24


作者: xiemingae    时间: 2007-1-9 23:58

/灌水
作者: impend    时间: 2007-1-10 10:55


作者: jiebidu    时间: 2007-1-10 11:34


作者: hdzjx1017    时间: 2007-1-31 15:26


作者: buyaonina    时间: 2007-2-22 18:04

看看在说咯 要不要的还要参考
作者: prettymouse    时间: 2007-2-24 22:48

...................................
作者: sdfg    时间: 2007-3-7 17:53


作者: shengye510    时间: 2007-3-16 16:16


作者: dt_dream    时间: 2007-3-20 01:51

373829368
作者: 43260120    时间: 2007-3-20 10:47

fdgdfgfdgfd
作者: wangting    时间: 2007-3-20 17:50

wo lai kan akn
作者: 50543    时间: 2007-3-22 14:20

dddddsddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd
作者: 50543    时间: 2007-3-22 14:23

eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
作者: friendwm    时间: 2007-4-1 10:07

mmmmmmmmmmmmmm
作者: system_wzw    时间: 2007-4-5 12:53

有没有啊?
不会是空帖吧????
作者: liuming1984    时间: 2007-4-16 18:57

dddddddddddddd
作者: luqing8514    时间: 2007-4-17 08:17


作者: luqing8514    时间: 2007-4-17 08:19

luqing8514@163.com
谢谢了
作者: bsso    时间: 2007-4-17 13:34

真是晕啊
                为什么会是这样的啊,我找了好久啊,但是一直的还是没有找到
作者: andjx    时间: 2007-4-17 23:02

3213123123123213123213213
作者: zhengfan8985    时间: 2007-4-18 12:33

ffffffffffffffffffffffff
作者: 13611586907    时间: 2007-4-19 17:53

黑乎乎091326股风大会规范    非电脑化规范  法国反对
作者: wumiping    时间: 2007-4-19 18:41


作者: lucia555    时间: 2007-5-12 14:11

则么都需要回复啊?
作者: shyjs    时间: 2007-5-12 18:42

看看先,是用什么语言写的?
作者: hesong005    时间: 2007-5-13 12:37

我正好做后台的,谢谢了
作者: hesong005    时间: 2007-5-13 13:02

谢谢你,能邮寄给我,你的论文吗
在线销售系列的论文
我的邮箱是  hesong107@163.com
急需要,谢谢~~
作者: lovekouni    时间: 2007-5-16 16:07

:旧拉萨看见开绿灯宰牲节规律棵分至点;个;在了;诸葛亮
作者: bewill    时间: 2007-5-16 16:23

范围台 期望外
作者: qiansenlee    时间: 2007-5-17 11:14

研究一下!
作者: qiansenlee    时间: 2007-5-17 11:16

qiansenlee@163.com
帮帮忙啊
作者: zy0301609    时间: 2007-5-17 15:03

求助asp电子书店 论文
作者: iyulin    时间: 2007-5-22 19:42

网站后台管理系统
作者: sxloveznl    时间: 2007-5-22 20:10

我也想看一下,急
作者: ruby88    时间: 2007-5-27 00:38

2244557
作者: qizi    时间: 2007-5-27 16:10

啊哦哦```
作者: chunyu    时间: 2007-5-27 22:14


作者: edisonhyz    时间: 2007-5-27 22:28

1111111111111
作者: 284440086    时间: 2007-5-31 09:24

怎么都来这一套啊
作者: 284440086    时间: 2007-5-31 09:27

还是看不到
作者: 284440086    时间: 2007-5-31 09:28

大哥 我真的急需
作者: 284440086    时间: 2007-5-31 09:29

你给我看就爱死你了    嘎嘎
作者: 284440086    时间: 2007-5-31 09:33

还是不能看
作者: 284440086    时间: 2007-5-31 09:33

怎么都是我发的啊
作者: chacha    时间: 2007-6-2 14:00

急需啊~~~~~~~
作者: chacha    时间: 2007-6-2 14:02

要要要~~~~
邮箱:lrw0628@126.com
多谢楼主~~~~
作者: chacha    时间: 2007-6-2 14:19

要要要~~~~
邮箱:lrw0628@126.com
多谢楼主~~~~
作者: rainbow208    时间: 2007-6-3 15:48

帅死了,一定不错呵
作者: 末文字东    时间: 2007-6-4 21:53

w  dinga
作者: chaann    时间: 2007-6-4 23:04

好,很期待
作者: 笨笨002    时间: 2007-8-24 22:12

!!!!!!!!!!!!!!!!!!!!!!
作者: 无名小卒    时间: 2007-10-14 14:45

谢谢 谢谢谢谢 谢谢 谢谢
作者: wumaonan    时间: 2008-5-8 14:26

??????
作者: ewrwr    时间: 2008-5-12 10:19

jhklklkjljkljklj
作者: albert    时间: 2008-6-9 08:45

自信看看




欢迎光临 逐梦论坛 (http://temp2023.zhumeng.org/) Powered by Discuz! 7.2