newarticle.jsp
来自「仿校内网站」· JSP 代码 · 共 102 行
JSP
102 行
<%@page contentType="text/html"%>
<%@page pageEncoding="utf-8"%>
<%@ taglib uri="/WEB-INF/FCKeditor.tld" prefix="FCK" %>
<%--
The taglib directive below imports the JSTL library. If you uncomment it,
you must also add the JSTL library to the project. The Add Library... action
on Libraries node in Projects view can be used to add the JSTL 1.1 library.
--%>
<%--
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
--%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style>a{TEXT-DECORATION:none}</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
<!--
body {
background-image: url(picture.jpg);
}
.STYLE1 {font-size: 36px}
-->
</style></head>
<body>
<table width="764" border="0" align="center">
<tr>
<td><img src="5clogo.jpg" width="754" height="121"><span class="STYLE1"></span></td>
</tr>
</table>
<h1 align="center"> </h1>
<table width="85%" height="640" border="0" align="center">
<tr>
<td><p><a href="articlelist.jsp"><img border="0" src="tubiao6.jpg" width="52" height="52"></a></p></td>
</tr>
<tr>
<td align="center" valign="top">
<form name="form1" method="post" action="ArticleServlet">
<input type="hidden" name="command" value="insert"/>
<table width="100%" height="600" border="0" align="center">
<tr>
<td width="20%" align="right" bgcolor="#99FF66">标题:</td>
<td width="80%" align="left" bgcolor="#99FF66"><label>
<input name="title" type="text" id="title">
</label></td>
</tr>
<tr>
<td align="right" bgcolor="#99FF66">发帖人:</td>
<td align="left" bgcolor="#99FF66"><label>
<%
String name = (String)session.getAttribute("user_name");
if (name == null || name == "") {
name = "匿名网友";
}
%>
<input name="author" type="text" id="author" value="<%=name%>">
</label></td>
</tr>
<tr>
<td align="right" valign="top" bgcolor="#99FF66">内容:</td>
<td align="top">
<FCK:editor id="article" basePath="/FCKeditor/" height="510px" width="660px"
imageBrowserURL="/FCKeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector"
linkBrowserURL="/FCKeditor/editor/filemanager/browser/default/browser.html?Connector=connectors/jsp/connector"
flashBrowserURL="/FCKeditor/editor/filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/jsp/connector"
imageUploadURL="/FCKeditor/editor/filemanager/upload/simpleuploader?Type=Image"
linkUploadURL="/FCKeditor/editor/filemanager/upload/simpleuploader?Type=File"
flashUploadURL="/FCKeditor/editor/filemanager/upload/simpleuploader?Type=Flash">
</FCK:editor>
</td>
</tr>
<tr>
<td> </td>
<td><label>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Reset" value="重置">
</label></td>
</tr>
</table>
</form></td>
</tr>
</table>
<p> </p>
<%--
This example uses JSTL, uncomment the taglib directive above.
To test, display the page like this: index.jsp?sayHello=true&name=Murphy
--%>
<%--
<c:if test="${param.sayHello}">
<!-- Let's welcome the user ${param.name} -->
Hello ${param.name}!
</c:if>
--%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?