📄 modifyaffiche_pro.jsp
字号:
<%@ page contentType="text/html; charset=GBK" language="java" import="com.*,java.util.*,java.io.*" errorPage="error.jsp" %>
<% request.setCharacterEncoding("gb2312");%>
<html>
<head>
<title>修改公告</title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
</head>
<jsp:useBean id="affichebean" class="com.AfficheBean" scope="page"/>
<body>
<center>
<%
String afficheId=request.getParameter("afficheId");
Affiche affiche=affichebean.getAfficheById(afficheId);
%>
<h1>更改公告</h1>
<form action="modifyAffiche_do.jsp" method="post">
<table border="1" bgcolor="#0099CC">
<tr><td>公告ID:
<input name="afficheId" type="text" id="afficheId" readonly="" value="<%=affiche.getAfficheId()%>"></td></tr>
<tr><td>公告内容:<input type="text" name="afficheNews" value="<%=affiche.getAfficheNews()%>"></td></tr>
<tr><td>公告时间:<input type="text" name="afficheTime" value="<%=affiche.getAfficheTime()%>"></td></tr>
<tr><td><input type=submit value=提交></td></tr>
</table>
</form>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -