?? type_update_ok.jsp
字號:
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="shopBeans.ConnDB" %>
<%@ page import="shopBeans.Convert" %>
<%@ page import="java.sql.*" %>
<%
String t_id=request.getParameter("t_id");
String t_type=request.getParameter("t_type");
Convert convert=new Convert();
t_type=convert.method(t_type);
ConnDB conn=new ConnDB();
String sql="update main_type set t_type='"+t_type+"' where t_id='"+t_id+"'";
int temp=conn.doUpdate(sql);
if(temp!=0)
{
out.println( "<HTML><HEAD><META http-equiv='refresh' content='1; URL=type_all.jsp' target=Main></HEAD><BODY bgcolor='#FFFFFF'><center><font size=4pt color='red'>" + "修改成功!" + "</font></center></body></html>");
}
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -