c-innovacion2/resoft/field_manager_new/process/bcb/team/member/delete.jsp

21 lines
730 B
Plaintext

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@include file="/include/db/db_connect.jsp"%>
<%@include file="/include/function/function.jsp"%>
<%request.setCharacterEncoding("utf-8");%>
<%
String c_team_no = r_call(request.getParameter("c_team_no"));
String c_project_no = r_call(request.getParameter("c_project_no"));
String c_pnm_no = r_call(request.getParameter("c_pnm_no"));
String sql_ok = "";
sql_ok = "update tbl_pnm_for_bcb set c_use = 1 where c_no = " + c_pnm_no;
stmt2.execute(sql_ok);
%>
<script>
alert("멤버가 삭제되었습니다");
location.href="../list.jsp?c_project_no=<%=c_project_no%>"
</script>
<%
%>
<%@include file="/include/db/db_close.jsp"%>