success_sharetitle_detail_Del.jsp
资源名称:shop.rar [点击查看]
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:1k
源码类别:
Applet
开发平台:
Java
- <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <jsp:useBean id="sharesubstanceBean" class="MyFly.Bean.sharesubstanceBean" scope="request"/>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <title>无标题文档</title>
- </head>
- <body>
- <%!
- String fun(String str)
- {
- try
- {
- return new String(str.getBytes("ISO8859-1"));
- }catch(Exception e)
- {
- return null;
- }
- }
- %>
- <%
- String type="";
- String index="";
- type=fun(request.getParameter("type"));
- index=request.getParameter("index");
- if(sharesubstanceBean.delete(Integer.parseInt(index))==0)
- {
- out.println("<Script language=JavaScript>alert('删除出错');javascript:history.back();</Script>");
- }
- else
- {
- response.sendRedirect("success_sharetitle_detail.jsp?type="+type);
- }
- %>
- </body>
- </html>