分享關於asp註冊程式碼實例

零下一度
發布: 2017-06-17 16:54:13
原創
1443 人瀏覽過

用戶註冊是很多網站都必須用的功能,實現註冊方法很多,今天我就把我方法拿出來共享一下吧,我把註冊填表文件,與判斷保存數據文件分開,reg.htm 與reg.asp,這樣做的好處很多,我想這個不用我多說了吧,看了我以前的文章都應該知道了,我的文章在www.111cn.net裡面有很多,下面看程式碼.reg.htm,效果圖我就不貼了,

<table width="100%"border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="250" height="77" ><div align="center"></div></td>
    <td > </td>
    <td width="300"><div align="right"><a href="x_wai_chuli.asp?xlei=newman"></a></div></td>
  </tr>
</table>
<div  style="position: relative; top:80px; width:400px; height:300px; left:30%">
  
  
  <table width="600" border="0" cellpadding="0" cellspacing="0">
   <form id="form1" name="form1" method="post" action="singin.asp"> 
     <tr>
      <td height="50"> </td>
      <td height="50"><div align="center"><font color="#B4CFED" size="3"><b>用户注册</b></font></div></td>
      <td height="50"> </td>
    </tr>
    <tr>
      <td width="118" height="40"><div align="right"><b><font color="#FFFFFF">学号:</font></b></div></td>
      <td width="210"><table width="200" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="5"><img src="skins/input1.png" width="5" height="25" /></td>
          <td background="skins/input3.png"><input name="myname" type="text" id="myname" style="border:solid 0px;" /></td>
          <td width="6"><img src="skins/input2.png" width="6" height="25" /></td>
        </tr>
      </table></td>
      <td width="272"><a href="index.asp">我有帐号了,登录?</a></td>
    </tr>
    <tr>
      <td height="40"><div align="right"><b><font color="#FFFFFF">密 码:</font></b></div></td>
      <td><table width="200" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="5"><img src="skins/input1.png" width="5" height="25" /></td>
          <td background="skins/input3.png"><input name="mypass" type="password" id="mypass" style="border:solid 0px;" /></td>
          <td width="6"><img src="skins/input2.png" width="6" height="25" /></td>
        </tr>
      </table></td>
      <td align="left"> </td>
    </tr>
    <tr>
      <td height="40"><div align="right"><b><font color="#FFFFFF">确认密码:</font></b></div></td>
      <td><table width="200" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="5"><img src="skins/input1.png" width="5" height="25" /></td>
          <td background="skins/input3.png"><input name="mypass2" type="password" id="mypass2" style="border:solid 0px;" /></td>
          <td width="6"><img src="skins/input2.png" width="6" height="25" /></td>
        </tr>
      </table></td>
      <td> </td>
    </tr>
    <tr>
      <td height="40"><div align="right"><b><font color="#FFFFFF">学生名称:</font></b></div></td>
      <td><table width="200" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="5"><img src="skins/input1.png" width="5" height="25" /></td>
          <td background="skins/input3.png"><input name="stuname" type="text" id="stuname" style="border:solid 0px;" /></td>
          <td width="6"><img src="skins/input2.png" width="6" height="25" /></td>
        </tr>
      </table></td>
      <td> </td>
    </tr>
    <tr>
      <td height="40"> </td>
      <td><label>
        <input name="button" type="submit" class="nnt_submit" id="button" value="注册" />
      </label>
        <a href="x_reg.asp">
        <label>
        <input name="button2" type="reset" class="nnt_submit" id="button2" value="重置" />
        </label>
        </a></td>
      <td> </td>
    </tr></form>
  </table>
登入後複製

 

這是reg.htm的程式碼全是htm的不講了,不過要提示一下,最好在客戶端進行判斷,用戶輸入資料的合法性,這樣有利於用戶體驗,這裡我不寫了,我在php實現·php 用戶登陸裡面詳細的寫了,

下面來看reg.asp的程式碼

<!--#include file="inc/cn.asp" -->
<!--#include file="inc/function.asp" -->
<%
 myname =Html_encode(Request.Form("myname"))
 mypass =Html_encode(Request.Form("mypass"))
 mypass2 =Html_encode(Request.Form("mypass2"))
 stuname =Html_encode(Request.Form("stuname"))
 
 If myname="" or mypass="" or mypass<>mypass2 or stuname="" Then
  Response.Write("<script>alert(&#39;请认真填写你的信息!&#39;);history.back();</script>")
 Elseif len(myanme)>15 or len(mypass)>15 or len(stuname)>5 or len(stuname)<2Then
  Response.Write("<script>alert(&#39;你输入信息的长度不对,用户名密码长度1-15位,姓名长度2-5位&#39;);history.back();</script>")
 Else
  Sql="select * from stu_user where user_id=&#39;"&myname&"&#39;"
  Call Db_connect()
  Rs.open Sql,conn,1,3
  If  Rs.eof Then
   Rs.addnew
   Rs("user_id")=myname
   Rs("user_dj")="0"
   Rs("User_name")=stuname
   Rs("user_pwd")=mypass2
   Rs.update
   Session("Uid")=myname
   Session("Udj")="0"
   Session("Stuname")=stuname
   Response.Redirect("iframe.asp")
  
  Else
   Response.Write("<script>alert(&#39;你的学号己被注册,请联系管理员再试!&#39;);history.back();</script>")
  End if
 End If
 
%>
登入後複製

 簡單吧,

以上是分享關於asp註冊程式碼實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!