Home Backend Development C#.Net Tutorial Share examples of asp registration code

Share examples of asp registration code

Jun 17, 2017 pm 04:54 PM
code register

User registration is a function that many websites must use. There are many ways to achieve registration. Today I will share my method. I separate the registration form file from the judgment and save data file. , reg.htm and reg.asp, there are many benefits of doing this. I don’t think I need to say more about this. You should know it after reading my previous articles. There are many of my articles in www.111cn.net. Below Look at the code.reg.htm, I won’t post the renderings,

<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>
Copy after login

This is the code of reg.htm, all of which are htm. I won’t go into detail, but I want to remind you. , it is best to judge the legality of the data entered by the user on the client side, which is beneficial to the user experience. I will not write it here. I wrote it in detail in PHP Implementation·php User Login,

Next Look at the code of 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
 
%>
Copy after login

Keep it simple,

The above is the detailed content of Share examples of asp registration code. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to register multiple accounts on Xiaohongshu? Will I be discovered if I register multiple accounts? How to register multiple accounts on Xiaohongshu? Will I be discovered if I register multiple accounts? Mar 25, 2024 am 09:41 AM

As a platform integrating social networking and e-commerce, Xiaohongshu has attracted more and more users to join. Some users hope to register multiple accounts to better experience interacting with Xiaohongshu. So, how to register multiple accounts on Xiaohongshu? 1. How to register multiple accounts on Xiaohongshu? 1. Use different mobile phone numbers to register. Currently, Xiaohongshu mainly uses mobile phone numbers to register accounts. Users sometimes try to purchase multiple mobile phone number cards and use them to register multiple Xiaohongshu accounts. However, this approach has some limitations, because purchasing multiple mobile phone number cards is cumbersome and costly. 2. Use email to register. In addition to your mobile phone number, your email can also be used to register a Xiaohongshu account. Users can prepare multiple email addresses and then use these email addresses to register accounts. but

How to register a Manwa Comics account How to register a Manwa Comics account Feb 28, 2024 am 08:00 AM

On the Manwa Comics platform, there are rich comic resources waiting for everyone to explore. As long as you easily enter the official platform of Manwa Comics, you can enjoy all kinds of wonderful comic works. Everyone can easily find their favorite comics to read according to their own preferences. So how to register the official account of Manwa Comics? The editor of this website will bring you this detailed tutorial guide, hoping to help everyone in need. Manwa Comics-Official entrance: https://fuw11.cc/mw666 Manwa Comics app download address: https://www.siemens-home.cn/soft/74440.html Manwa Comics non-mainland area entrance: https: /

How to register a Xiaohongshu account? What is required to register a Xiaohongshu account? How to register a Xiaohongshu account? What is required to register a Xiaohongshu account? Mar 22, 2024 am 10:16 AM

Xiaohongshu, a social platform integrating life, entertainment, shopping and sharing, has become an indispensable part of the daily life of many young people. So, how to register a Xiaohongshu account? 1. How to register a Xiaohongshu account? 1. Open the Xiaohongshu official website or download the Xiaohongshu APP. Click the &quot;Register&quot; button below and you can choose different registration methods. Currently, Xiaohongshu supports registration with mobile phone numbers, email addresses, and third-party accounts (such as WeChat, QQ, Weibo, etc.). 3. Fill in the relevant information. According to the selected registration method, fill in the corresponding mobile phone number, email address or third-party account information. 4. Set a password. Set a strong password to keep your account secure. 5. Complete the verification. Follow the prompts to complete mobile phone verification or email verification. 6. Perfect the individual

How to check what is registered with a mobile phone number 'Detailed explanation: APP query method for mobile phone number registration' How to check what is registered with a mobile phone number 'Detailed explanation: APP query method for mobile phone number registration' Feb 07, 2024 am 08:24 AM

I don’t know if you have such an experience. Your mobile phone often receives some inexplicable text messages, or registration information for some websites or other verification information. In fact, our mobile phone number may be bound to many unfamiliar websites, and we ourselves Even if you don’t know, what I will share with you today is to teach you how to unbind all unfamiliar websites with one click. Step 1: Open the number service platform. This technique is very practical. The steps are as follows: Open WeChat, click the plus icon in the search box, select Add Friend, and then enter the code number service platform to search. We can see that there is a number service platform. Of course, it belongs to a public institution and was launched by the National Institute of Information and Communications Technology. It can help everyone unbind mobile phone number information with one click. Step 2: Check whether the phone has been marked for me

How to register 163 email How to register 163 email Feb 14, 2024 am 09:20 AM

Some users find that they do not have an account when they want to use 163 mailbox. So what should they do if they need to register an account at this time? Now let’s take a look at the 163 email registration method brought by the editor. 1. First, search the 163 Email official website in the browser and click [Register a new account] on the page; 2. Then select [Free Email] or [VIP Email]; 3. Finally, after selecting, fill in the information and click [Now Just register];

How to register a Xiaohongshu account? How to recover if its account is abnormal? How to register a Xiaohongshu account? How to recover if its account is abnormal? Mar 21, 2024 pm 04:57 PM

As one of the most popular lifestyle sharing platforms in the world, Xiaohongshu has attracted a large number of users. So, how to register a Xiaohongshu account? This article will introduce you to the Xiaohongshu account registration process in detail, and answer the question of how to recover Xiaohongshu account abnormalities. 1. How to register a Xiaohongshu account? 1. Download the Xiaohongshu APP: Search and download the Xiaohongshu APP in the mobile app store, and open it after the installation is complete. 2. Register an account: After opening the Xiaohongshu APP, click the &quot;Me&quot; button in the lower right corner of the homepage, and then select &quot;Register&quot;. 3. Fill in the registration information: Fill in the mobile phone number, set password, verification code and other registration information according to the prompts. 4. Complete personal information: After successful registration, follow the prompts to complete personal information, such as name, gender, birthday, etc. 5. Settings

What to do if the blue screen code 0x0000001 occurs What to do if the blue screen code 0x0000001 occurs Feb 23, 2024 am 08:09 AM

What to do with blue screen code 0x0000001? The blue screen error is a warning mechanism when there is a problem with the computer system or hardware. Code 0x0000001 usually indicates a hardware or driver failure. When users suddenly encounter a blue screen error while using their computer, they may feel panicked and at a loss. Fortunately, most blue screen errors can be troubleshooted and dealt with with a few simple steps. This article will introduce readers to some methods to solve the blue screen error code 0x0000001. First, when encountering a blue screen error, we can try to restart

How to register a qooapp account How to register a qooapp account Mar 19, 2024 pm 08:58 PM

qooapp is a software that can download many games, so how to register an account? Users need to click the &quot;Register&quot; button if they don't have a pass yet, and then choose a registration method. This account registration method introduction is enough to tell you how to operate it. The following is a detailed introduction, so take a look. How to register a qooapp account? Answer: Click to register, and then choose a registration method. Specific methods: 1. After entering the login interface, click below. Don’t have a pass yet? Apply now. 2. Then choose the login method you need. 3. You can use it directly after that. Official website registration: 1. Open the website https://apps.ppaooq.com/ and click on the upper right corner to register. 2. Select registration

See all articles