<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@include file="/manager_for_cms/include/manager_head.jsp"%> <% String c_home = r_call(request.getParameter("c_home")); String c_project_no = r_call(request.getParameter("c_project_no")); if(c_project_no.equals("")){ %> <% }else{ String sql_up = " SELECT c.*, a.c_name as u_name, b.c_name as f_name "; sql_up = sql_up + " , (select c_now_propose from tbl_project_plan where c_relation = 0 and c_project_no = c.c_no) as c_now_propose " ; sql_up = sql_up + " from tbl_project c "; sql_up = sql_up + " inner join tbl_project a on a.c_no = c.c_up_no "; sql_up = sql_up + " inner join tbl_field b on b.c_no = a.c_field "; sql_up = sql_up + " where c.c_no = " + c_project_no; ResultSet rs_up = stmt.executeQuery(sql_up); if (rs_up.next()) { %>
Registration of evaluation project
Field <%=rs_up.getString("f_name")%>
Category <%=rs_up.getString("u_name")%>
Project Name <%=rs_up.getString("c_name")%>
<% } rs_up.close(); } %>
* Please be sure to enter the items marked with the mark.
*Evaluation Project Name
*Application index * If there are no indicators to be used, manage the indicators first.
*Target classification * It is used when the evaluator needs to identify the evaluation target.
*Contents of the pledge
Insert Cancel
<%@include file="/manager_for_cms/include/manager_bottom.jsp"%>