ly.jsp~18~
来自「基于b/s模式的jsp在线考试系统」· JSP~18~ 代码 · 共 45 行
JSP~18~
45 行
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
ly
</title>
</head>
<%
if(request.getSession().getAttribute("name") == null){
response.sendRedirect("login.jsp");
}
%>
<body bgcolor="#ffffff">
<h1 align="center"> 欢迎使用考试答疑系统 </h1>
<form name="form1" method="post" action="Ly">
<table>
<tr>
<td>留言人:</td>
<td>
<input name="Ly_Author" type="text" readonly="readonly" id="Ly_Author" value=<%=request.getSession().getAttribute("name")%> />
</td>
</tr>
<tr>
<td>内容:</td>
<td>
<textarea name="Ly_Content" cols="50" rows="5" id="Ly_Content"></textarea>
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="Submit" value="留言">
<input type="reset" name="Submit2" value="刷新">
</td>
</tr>
</table>
</form>
<br>
<br />
<h1>
<p align="center">
<a href="detail.jsp">查看留言</a>
</h1>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?