DeleteChannel.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
- /*
- * Created on 2005-12-9
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- package com.mycompany.servlet;
- import java.io.IOException;
- import java.net.URLEncoder;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import com.mycompany.news.dto.Channel;
- import com.mycompany.news.dto.Column;
- import com.mycompany.news.service.ChannelService;
- import com.mycompany.news.service.ColumnService;
- /**
- * @author Administrator
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- public class DeleteChannel extends HttpServlet {
- protected void service(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
-
- String channelid = request.getParameter("channelid");
- Channel channel= new Channel();
- channel.setChannelID(Long.valueOf(channelid));
- ChannelService cs = new ChannelService();
-
- if(cs.deleteChannel(channel))
- response.sendRedirect(request.getContextPath()+"/opsucc.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
- else
- response.sendRedirect(request.getContextPath()+"/opfail.jsp?message="+URLEncoder.encode(cs.getMessage(),"GB2312"));
- }
- }