📄 post.jsp
字号:
<%@ taglib uri="techbbs.tld" prefix="mt" %>
<%@ page contentType="text/html; charset=gb2312" %>
<jsp:useBean id="post" scope="page" class="org.jetic.web.techbbs.post" />
<jsp:useBean id="info" scope="page" class="org.jetic.web.techbbs.Information" />
<jsp:setProperty name="info" property="*" />
<jsp:useBean id="check" scope="page" class="org.jetic.web.techbbs.bbscheck" />
<%
if (!check.checkagain(session))
response.sendRedirect("error.jsp?id=1");
int id = info.getboardID();
if (request.getMethod().equals("POST")) {
if (post.Check(request)) {
if (post.AddNew(request,session)) {
response.sendRedirect("Topic.jsp?boardID=" + id);
}
else {
response.sendRedirect("error.jsp?id=8");
}
}
else {
response.sendRedirect("error.jsp?id=7");
}
}
else {
%>
<%@ include file="header.inc.jsp" %>
<%@ include file="other.jsp" %>
<%
info.online(request.getRemoteAddr(),session,"文豪挥笔");
%>
<table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolordark="#FFFFFF" bordercolorlight="#000000">
<tr>
<td bgcolor="#DDDDDD">
<a href="index.jsp">华源技术论坛</a>
<a href="Topic.jsp?boardID=<%= id %>"><%= info.boardname(id) %></a>
发表新文章
<%@ include file="link.inc" %>
</td>
</tr>
</table>
<br><br><br><br>
<center>
<form method="post" action="Post.jsp">
主 题:<input type=text name=title size=48><br>
图 标:<input type="radio" class="radio" name="iconid" value="1" > <IMG SRC="image/icon/icon1.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="帖子"> <input type="radio" class="radio" name="iconid" value="2" > <IMG SRC="image/icon/icon2.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="箭头"> <input type="radio" class="radio" name="iconid" value="3" > <IMG SRC="image/icon/icon3.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="灯泡"> <input type="radio" class="radio" name="iconid" value="4" > <IMG SRC="image/icon/icon4.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="惊叹"> <input type="radio" class="radio" name="iconid" value="5" > <IMG SRC="image/icon/icon5.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="疑问"> <input type="radio" class="radio" name="iconid" value="6" > <IMG SRC="image/icon/icon6.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="酷啊"> <input type="radio" class="radio" name="iconid" value="7" > <IMG SRC="image/icon/icon7.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="微笑"> <br>
<input type="radio" class="radio" name="iconid" value="8" > <IMG SRC="image/icon/icon8.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="生气"> <input type="radio" class="radio" name="iconid" value="9" > <IMG SRC="image/icon/icon9.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="不开心"> <input type="radio" class="radio" name="iconid" value="10" > <IMG SRC="image/icon/icon10.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="大笑"> <input type="radio" class="radio" name="iconid" value="11" > <IMG SRC="image/icon/icon11.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="红脸"> <input type="radio" class="radio" name="iconid" value="12" > <IMG SRC="image/icon/icon12.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="眨眼"> <input type="radio" class="radio" name="iconid" value="13" > <IMG SRC="image/icon/icon13.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="倒大拇指"> <input type="radio" class="radio" name="iconid" value="14" > <IMG SRC="image/icon/icon14.gif" HEIGHT=15 WIDTH=15 ALIGN=ABSCENTER alt="大拇指">
<input type="radio" class="radio" name="iconid" value="0" CHECKED> 无图标<br>
内 容:<textarea name=content></textarea><input type=hidden name=boardID value="<%=id%>"><br><br>
<input type=submit value="提交"> <input type=reset value="清除">
</form>
<br><br><br>
</center>
<%
}
%>
<%@ include file="footer.inc" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -