?? channel_del.jsp
字號(hào):
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@include file ="../DT_inc/ChkPwd.jsp"%>
<%@include file="../ConnDB.jsp"%>
<%
String ID=request.getParameter("ID");
if (ID != null)
{
Statement stmt_ChannelDEL=conn.createStatement();
String Sql="delete from tChannel where fChannelID=" + ID;
int shan=stmt_ChannelDEL.executeUpdate(Sql);
if (shan>0)
{
out.print("<p align='center'>頻道欄目成功刪除!</p>");
}
stmt_ChannelDEL.close();
}
conn.close();
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -