jsp用户注册程序

 代码如下 复制代码

<form id="myform" name="myform" onsubmit="return check()"
action="reg.jsp?action=adds" method="post">
        <table class="k1" style="MARGIN-TOP: 10px; MARGIN-BOTTOM: 15px"
cellspacing="0" cellpadding="8" width="570" align="center" border="0">
          <tbody>
            <tr>
              <td class="f14black" align="right" width="92" bgcolor="#f0f8ff"
    height="20"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td align="right">用户名:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td align="left" width="180" height="28"><input class="k1" id="username" name="username" />                          </td>
              <td class="f12blue" align="left" width="248" bgcolor="#fafafa"><span class="postError" id="usError">请正确填写,一经提交就不能更改 </span></td>
            </tr>
            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black"
align="right">密码:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left"><input class="k1" type="password"
      name="password" /></td>
              <td class="f12blue" align="left" bgcolor="#fafafa"><span class="postError" id="psError"> </span></td>
            </tr>
            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black"
    align="right">确认密码:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left"><input class="k1" type="password"
      name="password2" /></td>
              <td class="f12blue" align="left" bgcolor="#fafafa"><span class="postError" id="ps2Error">  </span></td>
            </tr>
            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black"
    align="right">单位名称:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left"><input class="k1"
    name="company" /></td>
              <td class="f12blue" align="left" bgcolor="#fafafa"><span class="postError" id="comError"> </span></td>
            </tr>
            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black"  align="right">联系人:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left"><input class="k1" name="conname" />                          </td>
              <td class="f12blue" align="left" bgcolor="#fafafa"><span class="postError" id="connameError"> </span></td>
            </tr>

            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black" align="right">联系电话:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left"><label>
                <input class="k1" name="tel" />
              </label></td>
              <td class="f12blue" align="left"
      bgcolor="#fafafa"><span class="postError" id="telError"> </span></td>
            </tr>
            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black"
      align="right">E_mail:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left"><label>
                <input class="k1" name="email" />
              </label></td>
              <td class="f12blue" align="left" bgcolor="#fafafa"><span class="postError" id="emailError"> </span></td>
            </tr>
            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black" align="right">联系地址:</td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left"><input class="k1" name="address" />                          </td>
              <td class="f12blue" align="left" bgcolor="#fafafa"><span class="postError" id="addError"> </span></td>
            </tr>

            <tr>
              <td class="k_hui_t" align="right" bgcolor="#f0f8ff" height="28"><table cellspacing="0" cellpadding="0" width="100%" border="0">
                  <tbody>
                    <tr>
                      <td class="f14black" align="right">备注<span
            class="f12red">:(可不填)</span></td>
                    </tr>
                  </tbody>
              </table></td>
              <td class="k_hui_t" align="left" colspan="2"><textarea style="WIDTH: 350px; HEIGHT: 60px" name="content"></textarea></td>
            </tr>
            <tr>
              <td></td>
              <td><input type="submit" value="提交" name="submit" /></td>
            </tr>
          </tbody>
        </table>
      </form>

jsp代码

 代码如下 复制代码

<%

String url ="jdbc:mysql://localhost/zkh131_db?user=zkh131&password=n3a9q2e3&useUnicode=true&characterEncoding=gb2312";
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
Connection conn= DriverManager.getConnection(url);

if (request.getParameter("submit")!=null){
 String username=new String(request.getParameter("username").getBytes("iso-8859-1"));
 String password=new String(request.getParameter("password").getBytes("iso-8859-1"));
 password=loginMD5.getMD5ofStr(password);
 String company=new String(request.getParameter("company").getBytes("iso-8859-1"));
 String conname=new String(request.getParameter("conname").getBytes("iso-8859-1"));
 String email=new String(request.getParameter("email").getBytes("iso-8859-1"));
 String address=new String(request.getParameter("address").getBytes("iso-8859-1"));
 String content=new String(request.getParameter("content").getBytes("iso-8859-1"));
 //String sex=new String(request.getParameter("selectsex").getBytes("iso-8859-1"));
 String tel=new String(request.getParameter("tel").getBytes("iso-8859-1"));
 Statement stmtd=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
 ResultSet Rsd=stmtd.executeQuery("Select * from Member where username='"+username+"'");
 if(Rsd.next()) {
  out.print("<script type="text/javascript"> alert("你的用户名已被注册,返回重新填写!"); window.history.back(-1); </script>");
  return ;
 }
 Rsd.close();
 stmtd.close();
 Statement stmt_ADD2=conn.createStatement();
 String Sqladd="insert into Member (username,content,password,tel,company,conname,email,address) values ('"+username+"','"+content+"','"+password+"','"+tel+"','"+company+"','"+conname+"','"+email+"','"+address+"')";
 int add2=stmt_ADD2.executeUpdate(Sqladd);
 stmt_ADD2.close();
 if (add2>0){
  out.print("<script type="text/javascript"> alert("注册成功,等待管理员审核中!"); window.location.href='down.jsp'; </script>"); 
 }
}
%>

时间: 2024-10-25 01:40:49

jsp用户注册程序的相关文章

使用JMeter测试JSP应用程序性能

js|程序|性能     如果你想测试你的JSP应用程序性能,那么你可以使用JMeter,它是由Apache软件基金会开发的开放源代码的产品.JMeter允许你开发测试方案,用以测试可访问的HTTP,FTP和JDBC数据库服务.JMeter可使用cookie和URL重写来处理Servlet验证,因此,在测试JSP应用程序时表现良好.它的下载地址为:http://jakarta.apache.org/jmeter     下面来看看JMeter,你可以写一个非常简单的JSP页面来使用JMeter进

代码-有没有人帮我讲解下jsp的程序呢?实在是看不懂,网上搜索也了解了点

问题描述 有没有人帮我讲解下jsp的程序呢?实在是看不懂,网上搜索也了解了点 希望你们帮我讲讲整个代码的框架?怎么实现的,实在是看不懂,网上搜索也了解了点 解决方案 建议先看servlet,然后再了解jsp 解决方案二: JSP实际上就是是一个servlet程序,只是jsp把这个servlet封装起来,通过PrintWriter的方式,将你的jsp中的内容,以html的元素内容形式返回给页面 解决方案三: 通俗的讲,jsp就是服务端servlet运行代码的一种视图表现形式,你也可以理解为网页,只

jsp 应用程序 finally里的 rs pstmt conn出错

问题描述 jsp 应用程序 finally里的 rs pstmt conn出错 登录验证界面 <% try{ Connection conn =null; PreparedStatement pstmt =null; ResultSet rs=null; String driverName ="com.sql.jdbc.Driver"; String dbName="user"; String url1="jdbc:sql://localhost/&

asp.net用户注册程序

asp教程.net用户注册程序 <%@ page language="c#" autoeventwireup="true" codefile="register.asp教程x.cs" inherits="register" %> <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w

jsp文件下载程序

jsp文件下载程序 function file_down($filepath, $filename = '') {  if(!$filename) $filename = basename($filepath);  if(is_ie()) $filename = rawurlencode($filename);  $filetype = fileext($filename);  $filesize = sprintf("%u", filesize($filepath));  if(ob

最简单_用户注册程序

最简单_用户注册程序 <!--#include file="Inc/conn.asp"--> <!--#include file="Inc/function.asp"--> <% dim UserName,FoundErr,ErrMsg UserName=trim(request("UserName")) if UserName="" or strLength(UserName)>14 or

调优servlet和JSP的程序性能

本文讲述了调整JSP和servlet的一些非常实用的方法,它可使你的servlet和JSP页面响应更快,扩展性更强.而且在用户数增加的情况下,系统负载会呈现出平滑上长的趋势.在本文中,我将通过一些实际例子和配置方法使得你的应用程序的性能有出人意料的提升.其中,某些调优技术是在你的编程工作中实现的.而另一些技术是与应用服务器的配置相关的.在本文中,我们将详细地描述怎样通过调整servlet和JSP页面,来提高你的应用程序的总体性能.在阅读本文之前,假设你有基本的servlet和JSP的知识. 方法

编写线程安全的JSP应用程序

JSP默认是以多线程方式执行的,这是JSP与ASP,PHP,PERL等脚本语言不一样的地方,也是它的优势之一,但如果不注意多线程中的同步问题,会使所写的JSP程序有难以发现的错误.下面以一个例子说明JSP中的多线程问题及解决方法. 一.JSP的中存在的多线程问题: 当客户端第一次请求某一个JSP文件时,服务端把该JSP编译成一个CLASS文件,并创建一个该类的实例,然后创建一个线程处理CLIENT端的请求.如果有多个客户端同时请求该JSP文件,则服务端会创建多个线程.每个客户端请求对应一个线程.

JSTL实现JSP应用程序快速开发

js|程序 JSTL是一个已经被标准化的标记库集合,她支持迭代.条件.XML文档的解析,国际化,和利用SQL与数据库交互的功能.JSTL主要包括四个基本部分的标记库:Core,XML,国际化,和对SQL的支持.由于这篇文章的主要是以其中的SQL部分的应用来快速了解JSTL,所以我们这篇文章只介绍了 Core和SQl标签库的一些基本功能. 这项技术简单而且功能强大,足以和PHP.ColdFusion一较高下.他在拓展Java的应用领域方面有足够的能力,这些领域不只包括大型的可再升级的Web应用程序