saveuser1.asp
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <%@ LANGUAGE = "vbscript" %>
  2. <!--#include file ="../md5/md5.asp"-->
  3. <!--#include file="security.asp"-->
  4. <!--#include file="articleconn.asp"-->
  5. <%if session("flag")>1 then
  6.     response.write "<br><p align=center>您的操作权限不够!</p>"
  7.     response.end
  8. end if
  9. %>
  10. <%
  11.    username=LCase(Request("username"))
  12.    password=LCase(Request("newpin"))
  13.    re_newpin=LCase(Request("re_newpin"))
  14.    if password<>re_newpin then
  15.    response.write"<script>alert('初始密码与确认密码不一致,不接受!');history.back();</Script>"
  16.    response.end
  17.    end if
  18.    password=MD5(password)
  19.    flag=Request("flag")
  20.    Set rs=Server.CreateObject("Adodb.RecordSet")
  21.    
  22.    rs.Open "Select * from password where name='"&username&"'",conn
  23.    if not rs.EOF then
  24.    Response.Write "<font color=red><div align=center><br><br>该用户名已经存在</div></font>"
  25.    Response.End   
  26.    end if
  27.    rs.close
  28.    sql="select * from password"
  29.    rs.open sql,conn,1,3
  30.    rs.addnew
  31.    rs("name")=username
  32.    rs("pwd")=password
  33.    rs("flag")=flag
  34.    rs.update
  35.    rs.Close
  36.    set rs=Nothing
  37.    
  38.    conn.Close
  39.    set conn=Nothing
  40.    Response.Redirect "adminuser.asp"
  41. %>