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
regpost.jsp
Package: 0102010.rar [view]
Upload User: nbluoke
Upload Date: 2013-08-09
Package Size: 4851k
Code Size: 3k
Category:
Education soft system
Development Platform:
WORD
- <%@ page contentType="text/html;charset=gb2312" pageEncoding="gb2312" %>
- <%@ page import="reg"%>
- <html>
- <head>
- <title>注册</title>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <link href="css.css" rel="stylesheet" type="text/css">
- </head>
- <body leftmargin="0" topmargin="0">
- <%
- String ID = new String(request.getParameter("ID").getBytes("ISO8859_1")).trim();
- String username = new String(request.getParameter("username").getBytes("ISO8859_1")).trim();
- String password = new String(request.getParameter("password").getBytes("ISO8859_1")).trim();
- String confirm = new String(request.getParameter("confirm").getBytes("ISO8859_1")).trim();
- String syspower = new String(request.getParameter("syspower").getBytes("ISO8859_1")).trim();
- %>
- <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td height="80" colspan="5"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="120"> </td>
- <td class="caption">注册</td>
- <td width="200"> </td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td width="100" align="center" valign="top"> </td>
- <td width="1" valign="top"></td>
- <td width="400" align="center" valign="top">
- <table width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td> </td>
- </tr>
- </table>
- <jsp:useBean id="regID" class="reg" scope="session"/>
- <%
- if(regID.reg(ID,username,password,confirm,syspower))
- {
- out.print("ok");
- String newID = regID.getID() + "";
- %>
- <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
- <tr align="center">
- <td height="30" colspan="2" bgcolor="#CCCCCC" class="deepred">恭喜您,注册成功!</td>
- </tr>
- <tr>
- <td width="50%" height="24" align="center" bgcolor="#FFFFFF">ID</td>
- <td align="center" bgcolor="#FFFFFF"><%=ID%></td>
- </tr>
- <tr>
- <td width="50%" height="24" align="center" bgcolor="#FFFFFF">用户</td>
- <td align="center" bgcolor="#FFFFFF"><%=username%></td>
- </tr>
- <tr>
- <td width="50%" height="24" align="center" bgcolor="#FFFFFF">密码</td>
- <td align="center" bgcolor="#FFFFFF"><%=password%></td>
- </tr>
- <tr>
- <td width="50%" height="24" align="center" bgcolor="#FFFFFF">syspower</td>
- <td align="center" bgcolor="#FFFFFF"><%=syspower%></td>
- </tr>
- </table>
- <%
- out.print("<br>");
- out.print("<a href="login.jsp">返回</a>");
- out.print("<a href=javascript:window.close()>关闭</a>");
- }else{
- out.print("注册失败!<br>");
- out.print("该用户名已有人使用,请使用另外的用户名!");
- out.print("<a href=javascript:history.go(-1)>返回</a>");
- }
- %>
- </td>
- <td width="1" valign="top"></td>
- <td width="100"> </td>
- </tr>
- <tr align="center">
- <td height="60" colspan="5" class="white">copyright© 2003 Examination123</td>
- </tr>
- </table>
- </body>
- </html>