.
This commit is contained in:
197
WebRoot/detail.jsp
Normal file
197
WebRoot/detail.jsp
Normal file
@@ -0,0 +1,197 @@
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||||
<%@ page import="java.sql.*,java.util.regex.Pattern"%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>帖子详情</title>
|
||||
|
||||
<link href="css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="font-awesome/css/font-awesome.css" rel="stylesheet">
|
||||
<link href="forum/css/plugins/iCheck/custom.css" rel="stylesheet">
|
||||
<link href="forum/css/animate.css" rel="stylesheet">
|
||||
<link href="forum/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<%
|
||||
if (session.getAttribute("actualuser") == null) {
|
||||
out.println(
|
||||
"<script language=javascript>alert('登录超时 (1440 秒未活动)或未登录,请重新登录。');window.location.href='index.html'</script>");
|
||||
return;
|
||||
}
|
||||
Object user0 = session.getAttribute("actualuser");
|
||||
/* out.println("欢迎"+user0);//输出当前session用户 */
|
||||
%>
|
||||
<%@ include file="module/top.jsp"%>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<%@ include file="module/sidebar.jsp"%>
|
||||
<div class="col-lg-1 col-md-1 hidden-xs"></div>
|
||||
<div class="col-lg-9 col-md-9">
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<h2>帖子详情</h2>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<a class="btn btn-default pull-right createNew" href="index.jsp"
|
||||
role="button">回到首页</a>
|
||||
</div>
|
||||
</div>
|
||||
<%
|
||||
String id = request.getParameter("id");
|
||||
|
||||
Connection con;
|
||||
Statement sql;
|
||||
ResultSet rs;
|
||||
String content = "";
|
||||
try {
|
||||
Class.forName("com.mysql.jdbc.Driver");
|
||||
} catch (ClassNotFoundException e) {
|
||||
out.print("驱动异常");
|
||||
}
|
||||
con = DriverManager.getConnection("jdbc:mysql://localhost/db_bbs?useUnicode=true&characterEncoding=utf-8",
|
||||
"root", "");
|
||||
sql = con.createStatement();
|
||||
String send = null;
|
||||
content = "select subject,content,time from send where id = '" + request.getParameter("id") + "'";
|
||||
rs = sql.executeQuery(content);
|
||||
try {
|
||||
while (rs.next()) {
|
||||
%>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="mail_box col-lg-10 col-md-10">
|
||||
<div class="mail-tools tooltip-demo m-t-md ">
|
||||
<div class="mail-body">
|
||||
<h3>
|
||||
<span class="font-noraml">主题: </span><%=rs.getString("subject")%>
|
||||
</h3>
|
||||
<h5>
|
||||
<span class="pull-right font-noraml"><%=rs.getDate("time")%> <%=rs.getTime("time")%></span>
|
||||
|
||||
</h5>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mail-body">
|
||||
<div class="mail-Content">
|
||||
<h3>内容</h3>
|
||||
<%=rs.getString("content")%>
|
||||
|
||||
<%
|
||||
}
|
||||
} catch (Exception e) {
|
||||
}
|
||||
sql.close();
|
||||
rs.close();
|
||||
con.close();
|
||||
%>
|
||||
</div>
|
||||
<div class="mail-body">
|
||||
<h3>评论信息</h3>
|
||||
<%
|
||||
Connection comcon;
|
||||
Statement comsql;
|
||||
ResultSet comrs;
|
||||
try {
|
||||
Class.forName("com.mysql.jdbc.Driver");
|
||||
} catch (ClassNotFoundException e) {
|
||||
out.print("驱动异常");
|
||||
}
|
||||
comcon = DriverManager.getConnection("jdbc:mysql://localhost/db_bbs", "root", "");
|
||||
comsql = comcon.createStatement();
|
||||
String comment = null;
|
||||
comment = "select comment,time from comment where subid = (select id from send where id ='" + id + "')";
|
||||
comrs = comsql.executeQuery(comment);
|
||||
try {
|
||||
while (comrs.next()) {
|
||||
%>
|
||||
|
||||
<div class="mail-body">
|
||||
|
||||
<%=comrs.getString("comment")%>
|
||||
|
||||
<h5>
|
||||
<span class="pull-right font-noraml"><%=comrs.getDate("time")%> <%=comrs.getTime("time")%></span>
|
||||
|
||||
</h5>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<%
|
||||
}
|
||||
} catch (Exception e) {
|
||||
out.print("无法显示评论信息");
|
||||
}
|
||||
comsql.close();
|
||||
comrs.close();
|
||||
comcon.close();
|
||||
String k1 = request.getQueryString();//得到ID的值(id=数字).
|
||||
String re = "\\D+";
|
||||
String result = k1.replaceAll(re, ""); //找到不是数字的字符,用""替代
|
||||
%>
|
||||
</div>
|
||||
<br> <br> <br> <br>
|
||||
<div class="mail-text h-200">
|
||||
<form action="forum/sendComment.jsp">
|
||||
<input type="hidden" name="subid" value=<%=result%>>
|
||||
<h4>评论</h4>
|
||||
|
||||
<textarea rows="10" cols="135" name="comment"
|
||||
class="form-control"></textarea>
|
||||
<input class="btn btn-default pull-right createNew"
|
||||
type="submit" value="提交">
|
||||
</form>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<%@ include file="module/footer.jsp"%>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Mainly scripts -->
|
||||
<script src="js/jquery-2.1.1.js"></script>
|
||||
<script src="js/bootstrap.js" type="text/javascript"></script>
|
||||
<script src="js/plugins/metisMenu/jquery.metisMenu.js"></script>
|
||||
<script src="js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
|
||||
|
||||
<!-- Custom and plugin javascript -->
|
||||
<script src="js/inspinia.js"></script>
|
||||
<script src="js/plugins/pace/pace.min.js"></script>
|
||||
|
||||
<!-- iCheck -->
|
||||
<script src="js/plugins/iCheck/icheck.min.js"></script>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('.i-checks').iCheck({
|
||||
checkboxClass : 'icheckbox_square-green',
|
||||
radioClass : 'iradio_square-green',
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user