⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 news_del.jsp

📁 读您的文件包读您的文件包读您的文件包读您的文件包
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ include file="conn.jsp"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="css.css" type="text/css">
<title>删除新闻</title>
</head>
<%
	
if(session.getAttribute("adminname")==null)
{response.sendRedirect("sorry.jsp");}
%>
<%
String MessageID=new String(request.getParameter("id").getBytes("ISO-8859-1"));
String condition="select * from art where art_id='"+MessageID+"'";
rs=stmt.executeQuery(condition);
rs.first();

%> 
<body background="img/beijing.gif">
<p>&nbsp;</p>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td>
<form name="form1" method="POST" action="news_del_operate.jsp?id=<%=MessageID%>">
        
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          
          <tr>
            <td align="center">
<input type="submit" name="Submit" value="确定删除" style="border:1 solid #BBB9B9;background:#ffffff" class="button"></td>
          </tr>
        </table>
      
       
      </form></td>
  </tr>
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -