?? channelmodify.jsp
字號:
<%@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>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -