Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
channeModify.jsp
Package: 55593402pressRelease.rar [view]
Upload User: junmaots
Upload Date: 2022-07-09
Package Size: 2450k
Code Size: 1k
Category:
Jsp/Servlet
Development Platform:
Java
- <%@page contentType="text/html; charset=GBK" language="java" %>
- <%
- String channelid=request.getParameter("channelid");
- com.mycompany.news.service.ChannelService cs = new com.mycompany.news.service.ChannelService();
- com.mycompany.news.dto.Channel channel = cs.getByID(Integer.parseInt(channelid));
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gbk">
- <title>修改频道</title>
- </head>
- <body>
- <br>
- <br>
- <br>
- <br>
- <br>
- <form name="form1" action="<%=request.getContextPath()%>/servlet/ModifyChannel" method="post">
- <input type="hidden" name="channelid" value="<%=channelid%>">
- <table align="center" border=0>
- <tr>
- <td>频道名称</td>
- <td><input name="channelName" value="<%=channel.getChannelName() %>"></td>
- </tr>
- <tr>
- <td>频道顺序</td>
- <td><input name="channelOrder" value="<%=channel.getChannelOrder() %>"/></td>
- </tr>
- <tr>
- <td colspan=2 align='center'><input type='submit' value='提交'></td>
- </tr>
- </table>
- </form>
- </body>
- </html>