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

📄 addnew.jsp

📁 简单的流言板系统,用myeclipse进行编写的,采用简单的jstl+javabean+servlet+jsp,属于三层架构.
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
	    <%@include file="./tags.jsp"%>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form
	action="${pageContext.request.contextPath }/MessageHandle?method=a"
	method="post">
	<c:if test="${added != null}">
	<span ><font color="red"><c:out value="${added}"/></font></span>
	</c:if>
	<c:if test="${error != null}">
	<span ><font color="red"><c:out value="${error}"/></font></span>
	</c:if>
	
<table align="center" border="1" cellspacing="0">
	<tr>
		<td>Title</td>
		<td><input type="text" name="title" size="50" title="input title here"></td>
	</tr>
	<tr>
		<td>Content</td>
		<td><textarea rows="10" cols="50" name="content"></textarea></td>
	</tr>
	<tr>
		<td colspan="2" align="center"><input type="submit" value="Submit"> <input
			type="reset" value="Reset"></td>
	</tr>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

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