22 lines
678 B
Plaintext
22 lines
678 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_no = r_call(request.getParameter("c_no"));
|
|
String c_field = r_call(request.getParameter("c_field"));
|
|
|
|
|
|
String sql_ok = "update tbl_project_operation set c_use = 1 where c_no = "+ c_no;
|
|
stmt2.execute(sql_ok);
|
|
%>
|
|
<script>
|
|
alert("Removed from operation");
|
|
parent.leftFrame.location.href="/field_manager/left.jsp"
|
|
location.href="../list.jsp?c_field=<%=c_field%>"
|
|
</script>
|
|
<%
|
|
|
|
%>
|
|
<%@include file="/include/db/db_close.jsp"%> |