<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@include file="/field_manager/include/manager_head.jsp"%> <% String c_project_no = r_call(request.getParameter("c_project_no")); String c_type = r_call(request.getParameter("c_type")); if(c_project_no.equals("")){ %> <% }else{ String sql_up = " SELECT c.*, a.c_name as u_name, b.c_name as f_name 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()) { %>
<%if(c_type.equals("1")){%> Instructor 등록 <%}%> <%if(c_type.equals("2")){%> Mentor 등록 <%}%> <%if(c_type.equals("3")){%> Observer 등록 <%}%>
* 표시가 있는 항목은 반드시 입력해 주세요.
메인필드 <%=rs_up.getString("f_name")%>
Category <%=rs_up.getString("u_name")%>
Educator Type <%if(c_type.equals("1")){%> Instructor <%}%> <%if(c_type.equals("2")){%> Mentor록 <%}%> <%if(c_type.equals("3")){%> Observer <%}%>
* <%if(c_type.equals("1")){%> Instructor <%}%> <%if(c_type.equals("2")){%> Mentor록 <%}%> <%if(c_type.equals("3")){%> Observer <%}%> ID(이메일) * 엔터를 구분하여 여러개 입력 가능
등록 취소
<% } rs_up.close(); %> <%}%> <%@include file="/field_manager/include/manager_bottom.jsp"%>