⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ly.jsp~21~

📁 基于b/s模式的jsp在线考试系统
💻 JSP~21~
字号:
<%@ 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">
<form name="form1" method="post" action="Ly">
  <table border="1" align="center">
    <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="留言">&nbsp;&nbsp;
         <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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -