?? answer_exe.jsp
字號:
<%@ page contentType="text/html; charset=GBK" %>
<jsp:useBean id="j" scope="application" class="jdbc.jdbc"/>
<jsp:useBean id="mae" scope="application" class="message_board.answer_exe"/>
<%
mae.con=j.getConnection();
String board_title=new String(request.getParameter("board_title").getBytes("ISO8859_1"), "GBK");
String response_context=new String(request.getParameter("response_context").getBytes("ISO8859_1"), "GBK");
String response_time=new String(request.getParameter("response_time").getBytes("ISO8859_1"), "GBK");
mae.board_title=board_title;
mae.response_context=response_context;
mae.response_time=response_time;
if(mae.a_exe())
{
out.print("回復成功");
}
else
{
out.print("回復失敗");
}
j.releaseConnection(mae.con);
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -