c-innovacion2/resoft/field_manager/process/survey/project/content.jsp

36 lines
793 B
Plaintext

<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@include file="/field_manager/include/manager_head.jsp"%>
<%
String c_no = r_call(request.getParameter("c_no"));
if(c_no.equals("")){
%>
<script>
alert("Wrong Connection.")
location.href="/"
</script>
<%
}else{
String sql_up = " SELECT c_content from tbl_survey_project where c_no = " + c_no;
ResultSet rs_up = stmt.executeQuery(sql_up);
if (rs_up.next()) {
%>
<br>
<br>
<center>
<table width="1000" cellSpacing="1" cellPadding="0" border="0" bgcolor="cdcdcd">
<tr >
<td bgcolor=ffffff style="padding:20px;line-height:200%">
<%=rs_up.getString("c_content")%>
</td>
</tr>
</table>
<% }
rs_up.close();
}
%>
<%@include file="/field_manager/include/manager_bottom.jsp"%>