newarticle.jsp

来自「简介: 功能介绍: 1:多用户统计系统」· JSP 代码 · 共 17 行

JSP
17
字号
<%@ page contentType="text/html; charset=gb2312" %>
<jsp:useBean id="article" scope="page" class="org.jetic.web.technologic.Article" />
<jsp:setProperty name="article" property="*" />
<%
if (request.getMethod().equals("POST")) {
	if (article.isValid()) {
		if (article.save())
			response.sendRedirect("category.jsp?categoryID=" + article.getCategoryID());
		else
			out.println("保存失败!");
	}
	else {
		out.println("输入错误!");
	}
}
%>

⌨️ 快捷键说明

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