- 1、本文档共20页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JSP课程设计报告
BBS论坛设计
BBS论坛
BBS的英文全称是Bulletin Board System,译为“电子公告板”。BBS最早是用来公布股市价格等类信息的,一直到个人计算机普及后目前,通过BBS系统
BBS详细设计分析
(给出各页面的运行效果截图、相关的Servlet代码,Servlet关键加注释)
1:背景加的是浮动框架
代码:html
head
title未标题-2/title
meta http-equiv=Content-Type content=text/html; charset=gb2312
/head
body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0
!-- Save for Web Slices (未标题-2) --
table id=__01 width=1247 height=567 border=0 cellpadding=0 cellspacing=0
tr
td colspan=3
img src=images/jing_01.jpg width=1247 height=50 alt=/td
/tr
tr
td width=90
img src=images/jing_02.jpg width=63 height=465 alt=/td
td width=1091
iframe name=left width=100% height=80% scrolling=yes src=login.jsp frameborder=0/iframe /td
td width=66img src=images/jing_04.jpg width=63 height=465 alt=/td
/tr
tr
td colspan=3
img src=images/jing_05.jpg width=1247 height=52 alt=/td
/tr
/table
!-- End Save for Web Slices --
/body
/html
系统主页面BBS.jsp
运行截图:()
相关代码:
导入标签:
%@ taglib uri=/jsp/jstl/core prefix=c %
body
pbr
img src=images/logo.jpg width=290 height=70
%
String uname=(String)session.getAttribute(uname);
%
% if(uname==null){ %
div你尚未登录 || a href=login.jsp登录/a || 注册/div
%} else{ %
div当前用户:%=uname %/div
p
% } %
pa href=GetTopicServlet?currentpage=1boardid=${boardid}}首页/a /p
table width=928 height=83 border=1 align=left cellpadding=0 cellspacing=0
%
ArrayListBoard bdata=BoardDao.getAllBoard();
for(int i=0;ibdata.size();i++){
Board tem=bdata.get(i);
%
tr
th width=134 bgcolor=#00BC9A scope=coldiv align=centerimg src=images/icon3.gif width=18 height=16/div/th
th width=632 bgcolor=#00BC9A scope=coldiv align=centera href=GetTopicServlet?boardid=%=tem.getBid() %%=tem.getBname() %/a/div/th
th width=105 bgcolor=#00BC9A scope=coldiv align=center主贴数:%=tem.getTopicnum() %/div/th
th width=47 bgcolor=#00BC9A scope=coldiv align=center/div/th
/tr
tr
td bgcolo
文档评论(0)