This article is a mirror article of machine translation, please click here to jump to the original article.

View: 20107|Reply: 1

[ASP.NET] asp.net landing interface source code with database scripts

[Copy link]
Posted on 4/1/2015 11:10:49 AM | | | |






asp.net login page, you can connect to the database, use database queries to determine whether the account and password are consistent, and then return to the page where the user successfully logged in or failed.

Here is the database code:

  1. CREATE DATABASE itsvsedb
  2. go
  3. use itsvsedb
  4. go

  5. create table userinfo(
  6.         u_id varchar(10) primary key,
  7.         u_pwd varchar(10) not null
  8. )

  9. insert into userinfo values('admin','123')
  10. select * from userinfo where u_id = 'admin' and u_pwd = '123'
Copy code


Here is asp.net source code: itsvse.rar (23.99 KB, Number of downloads: 8, Selling price: 1 Grain MB)





Previous:Discuz!
Next:Oracle simple beginner practice questions
Posted on 4/1/2015 2:28:43 PM |
Disclaimer:
All software, programming materials or articles published by Code Farmer Network are only for learning and research purposes; The above content shall not be used for commercial or illegal purposes, otherwise, users shall bear all consequences. The information on this site comes from the Internet, and copyright disputes have nothing to do with this site. You must completely delete the above content from your computer within 24 hours of downloading. If you like the program, please support genuine software, purchase registration, and get better genuine services. If there is any infringement, please contact us by email.

Mail To:help@itsvse.com