In Asp.net, how does one check that the user name already exists?

Source: Internet
Author: User
A select statement is solved.
Select count (*) from user where userid = 'userid'

Then, let's make another judgment! If it is zero, this user name will not be available. If it is greater than zero, this user will be available!

Set rs = server. Createobject ("ADODB. recordset") 'to create a connection object
SQL = "select * from table name where user column name = '" & username & "'" 'T-SQL statement
Rs. Open SQL, Conn, 1, 3 'Open the database
If not Rs. EOF or not Rs. bof then 'judgment
Response. Write "User already exists" 'judgment result
End if 'exit judgment
Rs. Close 'Close the object
Set rs = nothing 'release Resources
Conn. Close 'Close object
Set conn = nothing 'release the resource

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.