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

📄 space_myreplies.jsp

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ taglib uri="/WEB-INF/jrun-tag.tld" prefix="jrun"%>
<jsp:include flush="true" page="space_header.jsp" />
<div class="outer">
	<table class="main" border="0" cellspacing="0">
		<tr>
			<td id="main_layout0">
				<jsp:include flush="true" page="space_module_userinfo.jsp" />
			</td>

			<td id="main_layout1">
				<table class="module" cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td class="header">
							<div class="title">
								回复
							</div>
						</td>
					</tr>
					<tr>
						<td>
							<div id="module_myreplies">
								<table cellspacing="0" cellpadding="0" width="100%">
									<tr class="list_category">
										<td class="subject">
											标题
										</td>
										<td class="forum">
											版块
										</td>
										<td class="views">
											回复/查看
										</td>
										<td class="lastpost">
											最后发表
										</td>
									</tr>
									<c:forEach items="${myreplay}" var="threads">
										<tr>
										<td class="subject">
											<c:choose><c:when test="${viewthreadurl}"><a href="thread-${threads.tid}-1-1.html" target="_blank"></c:when><c:otherwise><a href="viewthread.jsp?tid=${threads.tid}" target="_blank"></c:otherwise></c:choose>
											<c:choose>
													<c:when test="${threads.special==1}"><img src="${styles.IMGDIR}/pollsmall.gif" alt="投票" /></c:when>
													<c:when test="${threads.special==2}"><img src="${styles.IMGDIR}/tradesmall.gif" alt="商品" /></c:when>
													<c:when test="${threads.special==3}">
														<c:choose>
															<c:when test="${threads.price>0}"><img src="${styles.IMGDIR}/rewardsmall.gif" alt="悬赏" /></c:when>
															<c:when test="${threads.price<0}"><img src="${styles.IMGDIR}/rewardsmallend.gif" alt="悬赏已解决" /></c:when>
														</c:choose>
													</c:when>
													<c:when test="${threads.special==4}"><img src="${styles.IMGDIR}/activitysmall.gif" alt="活动" /></c:when>
													<c:when test="${threads.special==5}"><img src="${styles.IMGDIR}/debatesmall.gif" alt="辩论" /></c:when>
													<c:when test="${threads.special==6}"><img src="${styles.IMGDIR}/videosmall.gif" alt="视频" /></c:when>
												</c:choose>
												<c:if test="${threads.isattc}">
												<img src="images/attachicons/common.gif" border="0" alt="附件" />
											</c:if>
											${threads.subjcet}
											<c:if test="${threads.isnew}">
												<a href="redirect.jsp?tid=${threads.tid}&amp;goto=newpost#newpost" target="_blank"><img src="${styles.IMGDIR}/firstnew.gif" border="0" alt="" /> </a>
											</c:if>
											</a>
										</td>
										<td class="forum">
											<c:choose><c:when test="${forumdisplayurl}"><a href="forum-${threads.fid}-1.html" target="_blank">${threads.forums}</a></c:when><c:otherwise><a href="forumdisplay.jsp?fid=${threads.fid}" target="_blank">${threads.forums}</a></c:otherwise></c:choose>
										</td>
										<td class="views">
											${threads.replaynum}/${threads.viewnum} 
										</td>
										<td class="lastpost">
											<a target="_blank" href="redirect.jsp?tid=${threads.tid}&amp;goto=lastpost#lastpost"><jrun:showTime timeInt="${threads.lastpost}" type="${dateformat} ${timeformat}" timeoffset="${timeoffset}"/></a>
											<br />
											by
											<a href="space.jsp?username=<jrun:encoding value="${threads.lastposter}"/>" target="_blank">${threads.lastposter}</a>
										</td>
									</tr>
									</c:forEach>
								</table>
								<div class="line"></div>
								<!-- ***************下面显示分页内容************************* -->		
						<c:if test="${logpage.totalSize > 10}">
							<div class="p_bar">
								<a class="p_total">&nbsp;${logpage.totalSize}&nbsp;</a>
								<a class="p_pages">&nbsp;${logpage.currentPage}/${logpage.totalPage}&nbsp;</a>
								<!-- 如果当前页不是第一页面,且大于10页时,且当前页大于4时则显示1 ... -->
								<c:if test="${logpage.totalPage>10 && logpage.currentPage>=4}">
									<a href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=1"
										class="p_pages">1 ...</a>
								</c:if>
								<!-- 如果当前页不是第一页面,则显示<< -->
								<c:if test="${logpage.currentPage != logpage.prePage}">
									<a href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=${logpage.prePage}" class="p_redirect">&lsaquo;&lsaquo;</a>
								</c:if>
								<c:choose>
									<c:when
										test="${logpage.totalPage>10 && logpage.currentPage>=4 && logpage.totalPage-(logpage.currentPage-2)>=10}">
										<!-- 显示滚动的页码信息 -->
										<c:forEach var="num" begin="${logpage.currentPage-2}"
											end="${(logpage.currentPage-2)+9}" step="1">
											<c:choose>
												<c:when test="${logpage.currentPage == num}">
													<a class="p_curpage">${logpage.currentPage}</a>
												</c:when>
												<c:otherwise>
													<a href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=${num}" class="p_num">${num}</a>
												</c:otherwise>
											</c:choose>
										</c:forEach>
									</c:when>
									<c:otherwise>
										<c:choose>
											<c:when
												test="${logpage.totalPage>10 && logpage.currentPage>=4}">
												<!-- 显示后半部分信息 -->
												<c:forEach var="num" begin="${logpage.totalPage-9}"
													end="${logpage.totalPage}" step="1">
													<c:choose>
														<c:when test="${logpage.currentPage == num}">
														<a class="p_curpage">${logpage.currentPage}</a>
														</c:when>
														<c:otherwise>
															<a href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=${num}" class="p_num">${num}</a>
														</c:otherwise>
													</c:choose>
												</c:forEach>
											</c:when>
											<c:otherwise>
												<c:choose>
													<c:when test="${logpage.totalPage>10}">
													<!-- 显示前半部分值 -->
														<c:forEach var="num" begin="1" end="10" step="1">
															<c:choose>
																<c:when test="${logpage.currentPage == num}">
																	<a class="p_curpage">${logpage.currentPage}</a>
																</c:when>
																<c:otherwise>
																	<a href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=${num}" class="p_num">${num}</a>
																</c:otherwise>
															</c:choose>
														</c:forEach>
													</c:when>
													<c:otherwise>
													<!-- 如果不够10页则显示 -->
														<c:forEach var="num" begin="1" end="${logpage.totalPage}"
															step="1">
															<c:choose>
																<c:when test="${logpage.currentPage == num}">
																	<a class="p_curpage">${logpage.currentPage}</a>
																</c:when>
																<c:otherwise>
																	<a href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=${num}" class="p_num">${num}</a>
																</c:otherwise>
															</c:choose>
														</c:forEach>
													</c:otherwise>
												</c:choose>
											</c:otherwise>
										</c:choose>
									</c:otherwise>
								</c:choose>
								<!-- 如果当前页不是最后页面,则显示 《 《-->
								<c:if test="${logpage.currentPage != logpage.nextPage}">
									<a
										href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=${logpage.nextPage}"
										class="p_redirect">&rsaquo;&rsaquo;</a>
								</c:if>
								<!-- 如果超过一定范围则显示... -->
								<c:if test="${logpage.totalPage>10 && (logpage.totalPage-logpage.currentPage)>7}">
									<a
									href="space.jsp?action=myreplies&uid=${member.uid}&amp;page=${logpage.totalPage}"
									class="p_pages">... ${logpage.totalPage}</a>
								</c:if>
								<!-- 如果页数大于10则显示此框-->
								<c:if test="${logpage.totalPage>10}">
									<kbd>
									<input type="text" name="custompage" size="3" 
										onkeydown="if(event.keyCode==13) {window.location='space.jsp?action=myreplies&uid=${member.uid}&amp;page='+this.value; return false;}" />
								</kbd>
								</c:if>
						</c:if>
			<!-- ******************************分页结束********************************* -->
							</div>
						</td>
					</tr>
				</table>
			</td>

		</tr>
	</table>
</div>
<jsp:include flush="true" page="space_footer.jsp" />

⌨️ 快捷键说明

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