📄 newarticle.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -