column.jsp
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:1k
- <%@page contentType="text/html; charset=GBK" language="java" %>
- <%@page import="com.mycompany.news.service.ChannelService" %>
- <%@page import="com.mycompany.news.dto.Channel" %>
- <%
- String channelid = request.getParameter("channelid");
- ChannelService cs = new ChannelService();
- Channel c = cs.getByID(Integer.parseInt(channelid));
- System.out.println("c ="+c);
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
- <html>
- <head>
- <title>《<%=c.getChannelName()%>》栏目管理</title>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- </head>
- <frameset rows="*" cols="240,*" rameborder="yes" border="1" framespacing="1" name="mainframeset">
- <frame src="columns_left.jsp?channelid=<%=channelid%>" name="leftFrame" scrolling="auto" BORDERCOLOR="#dddddd" noresize >
- <frame src="columns_main.jsp?channelid=<%=channelid%>" name="mainFrame" scrolling="yes" >
- </frameset>
- <noframes><body>
- </body></noframes>
- </html>