Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
admin.jsp.svn-base
Package: cindyblog.rar [view]
Upload User: cdpainuo
Upload Date: 2022-07-12
Package Size: 5257k
Code Size: 2k
Category:
Jsp/Servlet
Development Platform:
Java
- <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
- <title>My JSP 'MyJsp.jsp' starting page</title>
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <script type="text/javascript" src="/js/richedit.js"></script>
- </head>
- <body>
- <h1>添加日志</h1>
- <form action="/admin?m=addJournal" method="post" name="f1">
- <input type="text" name="title"/> <label>标题</label><p/>
- <input type="text" name="type"/><label>分类</label><p/>
- <script type="text/javascript">
- var editor1 = new EDITOR();
- editor1.create();
- </script>
- <input type="submit" value="提交" onclick="rtoStore();document.f1.submit();">
- </form>
- <h1>添加类型</h1>
- <form action="/admin?m=addType" method="post">
- <input type="text" name="name"/>类型<p/>
- <input type="submit" value="提交">
- </form>
- <h1>添加留言</h1>
- <form action="/admin?m=addMessage" method="post">
- <input type="text" name="name"/>姓名<p/>
- <textarea style="width:600px" name="content"></textarea><p/>
- <input type="submit" value="提交">
- </form>
- <h1>添加链接</h1>
- <form action="/admin?m=addLink" method="post">
- <input type="text" name="name"/>名称<p/>
- <input type="text" name="url"/>链接<p/>
- <input type="submit" value="提交">
- </form>
- <h1>添加评论</h1>
- <form action="/admin?m=addDiscuss" method="post">
- <input type="text" name="name"/>姓名<p/>
- <input type="text" name="title"/>标题<p/>
- <input type="text" name="aid"/>标题id<p/>
- <textarea style="width:600px" name="content"></textarea><p/>
- <input type="submit" value="提交">
- </form>
- </body>
- </html>