?? bookclassupdate.jsp
字號:
<%@ page contentType="text/html; charset=GBK" %>
<jsp:useBean id="my" scope="page" class="bookshop.BookClassBean"/>
<%
String action =request.getParameter("action");
String str="";
int dd=0;
if(action.equals("add"))
{
String classname =request.getParameter("classname");
str=" insert into bookclass values('"+classname+"')";
}
else
{
String id =request.getParameter("id");
str=" delete bookclass where bookclassno="+id;
}
dd= my.exeBook(str);
%>
<script type="">
alert("類別更新成功!"+<%=dd%>);
location.href="admin_main.jsp";
</script>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -