⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 body.jsp

📁 是用java和jsp实现的bbs论坛系统。 有注册登陆模块
💻 JSP
字号:
<% String sessionUsername = (String)session.getAttribute("username"); %>
<% String sessionType = (String)session.getAttribute("type"); %>
<Body>

<center><img src="./images/logo.jpg"></center>
<jsp:include page="table_start.jsp" flush="true" /> 
<jsp:include page="table_title.jsp" flush="true">
	<jsp:param name="title" value="Control Bar" /> 
	<jsp:param name="colspan" value="1" /> 
	<jsp:param name="align" value="left" /> 
</jsp:include>						
<jsp:include page="table_start_body.jsp" flush="true" />
<jsp:include page="table_body.jsp" flush="true">
	<jsp:param name="width" value="0" /> 
</jsp:include>
	<table width="100%" height="0" border="0" cellpadding="0" cellspacing="0" class="infobar">
		<tr> 
			<td width="50%" height="0" align="left" valign="top">
				<% if(sessionUsername != null){ %>
					<a href="./index.jsp?page=profile">Change Forum Profile</a>
				<% }else{ %>
					<form action="../servlet/forum.Login" method=POST name=form>
							Username:<input type="text" name="username" size="10" maxlength="60">
							Password:<input type="password" name="password" size="10" maxlength="60">
							<input type="submit" value="Login">
					</form>
				<% } %>
			</td>
			<td width="50%" height="0" align="right" valign="top">
				<% if(sessionUsername != null){ %>
					Logged in as: <%= sessionUsername %> Type: <%= sessionType %>
					&nbsp;&nbsp;[<a href="../servlet/forum.Logout">Logout</a>]		
				<% } %>
			</td>
		</tr>
	</table>
<jsp:include page="table_close_body.jsp" flush="true" />				 
<jsp:include page="table_close.jsp" flush="true" />

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -