23 lines
652 B
Plaintext
23 lines
652 B
Plaintext
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
|
<%@include file="/include/include.jsp"%>
|
|
|
|
<%
|
|
String c_presentation_no = r_call(request.getParameter("c_presentation_no"));
|
|
String last_no = r_call(request.getParameter("last_no"));
|
|
|
|
String sql_p_d = "select c_no from tbl_presentation_chat where c_presentation_no = "+ c_presentation_no + " order by c_no desc";
|
|
ResultSet rs_p_d = stmt2.executeQuery(sql_p_d);
|
|
if(rs_p_d.next()){
|
|
if(!last_no.equals(rs_p_d.getString("c_no"))){
|
|
%>
|
|
<script>
|
|
parent.rel();
|
|
</script>
|
|
<%
|
|
}
|
|
}
|
|
rs_p_d.close();
|
|
%>
|
|
|
|
<%@include file="/include/include_b.jsp"%>
|