sendmessage.jsp

来自「主要包括有消息的发布、删除、查看消息、查看消息内容、还有一些用户的注册、登录等采」· JSP 代码 · 共 23 行

JSP
23
字号
<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>
<%@ taglib prefix="bean" uri="http://struts.apache.org/tags-bean" %>
<%@ taglib prefix="html" uri="http://struts.apache.org/tags-html" %>
<%@ taglib prefix="logic" uri="http://struts.apache.org/tags-logic" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>发送消息</title>
</head>
<body>
<h1 align="center">发送消息</h1>
  <html:form action="sendMessage.do">
   标题:<html:text property="title"/><br>
  接收人:<html:text property="name"/><br>
  内容:<html:textarea property="content" cols="40" rows="10"/><br>
   <html:submit>发送</html:submit>
   <html:reset>重写</html:reset>
  </html:form>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?