80 lines
2.5 KiB
Plaintext
80 lines
2.5 KiB
Plaintext
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
|
<%@page import="java.net.URLEncoder"%>
|
|
<%@include file="/include/include.jsp"%>
|
|
<%@include file="/include/head.jsp"%>
|
|
<%@include file="/cms_for_bcb/show_top.jsp"%>
|
|
|
|
<%
|
|
|
|
String c_maker = "1";
|
|
String board_no = show_no;
|
|
String para_t = "show_no="+ show_no +"&check_no="+ check_no +"&c_maker=" + c_maker + "&board_no=" + board_no + "&c_relation=" + c_relation + "&c_relation2=" + c_relation2;
|
|
|
|
|
|
String nowPage = r_call(request.getParameter("nowPage"));
|
|
String c_no = r_call(request.getParameter("c_no"));
|
|
if(c_no.equals("")){
|
|
%>
|
|
<script>
|
|
alert("Wrong connection.")
|
|
location.href="/"
|
|
</script>
|
|
<%
|
|
}else{
|
|
String sql_ok = "";
|
|
sql_ok = "update tbl_board set c_click = c_click + 1 where c_no = " + c_no;
|
|
|
|
stmt2.execute(sql_ok);
|
|
|
|
String sql1 = " select * from tbl_board where c_no = " + c_no;
|
|
ResultSet rst = stmt.executeQuery(sql1);
|
|
if (rst.next()) {
|
|
%>
|
|
<table width="100%" cellSpacing="1" cellPadding="0" border="0" >
|
|
<tr bgcolor=cdcdcd><td height="2" >
|
|
</td></tr>
|
|
<tr bgcolor=fffff><td height="30" style="padding:5px">
|
|
Title. <%=rst.getString("c_title")%></b>
|
|
</td></tr>
|
|
<tr bgcolor=ededed><td height="30" style="padding:5px">
|
|
|
|
Name. <%=rst.getString("c_name")%></b>
|
|
/
|
|
Clicks <%=rst.getString("c_click")%></b>
|
|
/
|
|
date <%=rst.getString("c_date").substring(0,10)%></b>
|
|
|
|
</td></tr>
|
|
|
|
<tr bgcolor=fffff><td height="220" valign=top style="padding:5px">
|
|
<%=rst.getString("c_content").replaceAll("\n\r","<br />")%></b>
|
|
</td></tr>
|
|
<tr bgcolor=ededed><td height="30" style="padding:5px">
|
|
<script>
|
|
function file_down(flag1,flag2){
|
|
location.href="/upload/" + flag1 + "/2" + encodeURIComponent(flag2)
|
|
}
|
|
</script>
|
|
File. <a href="#none" onclick="file_down('board','[서식] 후속진출지원 결과보고서.hwp')"><%=rst.getString("c_file")%></a></b>
|
|
|
|
</td></tr>
|
|
</td></tr>
|
|
</table>
|
|
<table width="100%" cellSpacing="1" cellPadding="0" border="0" bgcolor=ffffff>
|
|
<tr bgcolor=ffffff><td height="40" align=right style="padding:5px">
|
|
|
|
<a href="list.jsp?<%=para_t%>&nowPage=<%=nowPage%>" style="width: 80px; line-height: 26px; text-align: center;display: inline-block; background: #989898; border: 1px solid #555; border-radius: 5px; color: #ffffff;">List</a>
|
|
</td></tr>
|
|
</table>
|
|
|
|
<%
|
|
|
|
}
|
|
rst.close();
|
|
}
|
|
%>
|
|
|
|
<%@include file="/cms_for_bcb/show_bottom.jsp"%>
|
|
<%@include file="/include/bottom.jsp"%>
|
|
<%@include file="/include/include_b.jsp"%>
|