• Login
  • Our WordPress Plugin
  • Blog Posting Services
  • In Twitter
  • In LinkedIn
J
HARAPHULA
OneStop Shop of Information

Updates

  • The best Guest Posting Website to boost your Online Presence
    •
  • Why Web2 Guest Posts Backlinks matters for Google Ranking?
    •
  • How Paid Guest Posting Services Help for SEO Backlinks?
    •
  • Why Guest Posting is a best approach to boost Products Sales?
    •
  • Do-follow links from Guest Posting how affecting Ranking
    •
  • Free Guest Posting in LinkedIn or Medium Accelerate Indexing
    •
  • Should I go for paid Guest Posting with No-follow links?
    •
  • Tricks for Lead Generation using Guest Posting deep links
    •
  • How Guest Posting Services useful for SEO Backlinks & Ranking?
    •
  • Why I will Choose Link Insertion in place of fresh Guest Posting with link?
    •
  • Quality Backlinks or Lead Generation when to use Guest Posting Service?
    •

ASP.NET Login form Example validating user from SQL Server Database

Microsoft Technologies
May 15, 2016
4 (1 votes)
ASP.NET Login form Example validating user from SQL Server Database ASP.NET Login form Example validating user from SQL Server Database
3 5 80
Drive Leads from Google use the Power of Article Marketing

Designing a Login form is not so easy as we are thinking. Modern login pages comes with various rich feature such as Validating User, Form Validation, Capcha or Remember Password. In this Login form Example demo app we are going to show you how to authenticate an user using records from SQL Server user table. To start with first you required to Create a user table in SQL Server.

Create a SQL Table for Users

To Create an user table which will store Login details such as UserID or Password your required to run the following Transact-SQL Query.

CREATE TABLE user_table (
id INT PRIMARY KEY, 
userid VARCHAR(255) NOT NULL, 
password VARCHAR(56)
);

Then insert some sample records.

In front-end Copy n Paste my default.aspx page Codes. Here I have 2 textbox Controls such as user id and password. To stop spam here I am using required field validation for both the fields. Additionally to valid an email id I am using ASP.NET RegularExpressionValidator validation control. Then in my form I have a submit button. Which submits the form to server using post method.

ASP.NET Login form Example

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title>ASP.NET Login form Example</title>
<link rel="stylesheet" href="master.css" />
</head>
<body>
<form id="frmLogin" runat="server">
<div class="loginDiv rounded">
<div class="formControl">
Email ID&nbsp;<span style="color: Red;">*</span>
</div>
<div class="formControl">
<asp:TextBox ID="txtEmailID" runat="server" Width="100%"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvEmailID" runat="server" ControlToValidate="txtEmailID"
Display="Dynamic" ErrorMessage="Email should not be blank.<br />"></asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="revEmailID" runat="server"
ControlToValidate="txtEmailID" Display="Dynamic" ErrorMessage="Enter a valid Email ID.<br />"
ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"></asp:RegularExpressionValidator>
</div>
<div class="formControl">
Password&nbsp;<span style="color: Red;">*</span>
</div>
<div class="formControl">
<asp:TextBox ID="txtPassword" runat="server" TextMode="Password" Width="100%"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvPassword" runat="server" ControlToValidate="txtPassword"
Display="Dynamic" ErrorMessage="Password should not be blank."></asp:RequiredFieldValidator>
</div>
<asp:Button ID="btnVisitorLogin" runat="server" Text="Login" />
<asp:Label ID="lblMessage" runat="server"></asp:Label>
<input type="checkbox" value="remember-me" />&nbsp;Remember me<a href="#" class="pull-right margin-gap">Need help?</a>
</div>
</form> 
</body>
</html>

To valid user from SQL Server in Code behind file I am executing my business logics inside “btnVisitorLogin_Click” event. To connect and execute SQL query which will fetch data I imported the system files “System.Data” and “System.Data.SqlClient” in page header.

To establish a Connection I am creating a new instance for SQL Server Connection object. Which accepts connection string from my web.config file. Look at the below code to know how to declare connection string in web.config file.

<connectionStrings>
<add name="connStr" connectionString="Data Source=WINSERV;Initial Catalog=phase2;User ID=sa;Password=win#serv" providerName="System.Data.SqlClient"/>
</connectionStrings>

Here Data Source is my Database Server name. Initial Catalog is the Database name and User id, password is for the database user.

To compare user Credentials with database records here I am executing a command object and fetching user table records to a SQL DataReader. As you know datareader works like a pointer. Using a DataReader compare to a DataSet we can minimize the login time. To validate a user I am running a while loop until the end record of SQL DataReader “dr_pass”. For each record inside the while loop I am comparing the value with user password. In case it returns true I am allowing the user to redirect into the application dashboard page.

Default.aspx.vb

Imports System.Data
Imports System.Data.SqlClient

Partial Class _Default
Inherits System.Web.UI.Page

Protected Sub btnVisitorLogin_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnVisitorLogin.Click

Dim oMyConnection As New SqlConnection(ConfigurationManager.ConnectionStrings("connStr").ToString)
Dim oMyCommand As New SqlCommand("SELECT password, userid FROM user_table WHERE userid= '" & txtEmailID.Text & "' ", oMyConnection)
Dim dr_pass As SqlDataReader

oMyConnection.Open()
dr_pass = oMyCommand.ExecuteReader(System.Data.CommandBehavior.CloseConnection)

If Not dr_pass.HasRows Then
lblMessage.Text = "Invalid Email or Password."
End If

While dr_pass.Read
If Trim(txtPassword.Text) = dr_pass("password") Then
Session.Add("sess_uid", dr_pass("userid"))
Response.Redirect("../Dashboard.aspx")
End If
End While
End Sub
End Class

Login Form CSS Style (master.css)

#frmLogin { max-width: 300px; margin: 0 auto; padding-top: 120px; }
.formControl { font-family: Verdana; font-size: 12px; }
.loginDiv { width:300px; margin-top: 20px; padding: 20px 20px 20px 20px; background-color: #f7f7f7; -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); } 
.rounded { border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; }

The above demo will run without CSS. But beauty attracts eyes. This is the cause I am with the above CSS classes. Apply this CSS to have a basic look. You modify it as per the mock-up.

Tags:ASP.NET Login form, ASP.NET Login Page, Database Basics, SQL Server Database, validating user from
Introduction to TCP/IP Model Layers for absolute Beginners
Responsive mobile first BootStrap 5 User Login page Example

Related Posts

  • How to implement Forms Authentication in ASP.NET?
  • Responsive mobile first BootStrap 5 User Login page Example
  • How to install WordPress on XAMPP Web Server?
  • WordPress Tricks to keep your Website Secure from Hacking
  • Simple JavaScript Captcha Example (Client Side Captcha)
  • ASP.NET Login page example with Remember me Option
  • Project Estimation Techniques for Software…
  • How to Design a Database? - Database Design for Beginners
  • How to use JavaScript function with ASP.NET CustomValidator?
  • Database Basics with Terminologies definition for Beginners
  • IP Address Spoofing to DNS Spoofing Attacks in details
  • How to Check is Browser Cookie enabled or disabled…
  • List of frequently used common SQL Queries with Example
  • JQuey AJAX File Upload Example using PHP Server
  • AngularJS Form Validation (Required, Email, Number &…
  • Using HTML5 Application Cache for Offline Storage
  • SQL Server Interview Questions for DBA professionals
  • Create, Remove or Read a PHP Cookie using Setcookie method
  • How to Start a WordPress blog with Hostgator & Godaddy?
  • Simple string to image based free PHP Captcha Code
  • Script for PHP upload image file to Server using…
  • AngularJS Assessment Questionnaires for Trainees to Evaluate
  • ASP.NET File Upload to Server using FileUpload…
  • Has Instagram Blocked your Login for no Reasons? -…
  • How to Add Share button in WordPress blog?
On-page SEO booster,
Google Friendly,
XML based
PHP/WP Sidebar
FREE Widgets
demo

Our Web2 Blogs

Business Hosting Provider
Hosting Shop
Hosting for WordPress Bloggers
Publishing Services
Indian Blog
Blog Posting Services

Popular Categories

  • Miscellaneous590
  • Digitalization298
  • Career Guide244
  • Indian Blog207
  • Business Book177
  • Health & Wellness168
  • Travel & Tourism132
  • Your Financial Advisor120
  • Real Estate Consulting111
  • Shopping97
  • Blogging Techniques77
  • Digital Marketing76
  • Home Remedies70
  • SEO Techniques67
  • Programming62
  • Automobiles57
  • Fashion & Fantacy53
  • Easy Recipes52

i20 Sidebar Widgets

Noteworthy benefits of Investing in the Precious White Metal
Noteworthy benefits of Investing in the Precious White Metal
Precious metals are great for investments. And, platinum is considered one of the most important precious metals in the world. For investors, it is as...
Everything you need to know about Instant Personal Loan
Everything you need to know about Instant Personal Loan
In today’s fast-paced lifestyle, situations where immediate cash is required for an emergency or unexpected expenditure are common. Loan instant approval can be a great...
Who Can benefit from Blockchain Technology with uses Cases?
Who Can benefit from Blockchain Technology with uses Cases?
Blockchain technology has produced a massive breakthrough in the traditional mechanisms of data storage, distribution, and authentication. Under the potential to utilize this technology for...
Capital Growth to Tax Saving 6 benefits of taking Home Loan
Capital Growth to Tax Saving 6 benefits of taking Home Loan
Every person dreams of buying their own home and it is one biggest financial investment in your lifetime. On top of this, if you have...
The Environmental benefits of Paying Bills Online
The Environmental benefits of Paying Bills Online
Sustainability and the threat to the Earth’s ecology are problems that we all are aware of. Consistent focus on industrial growth has impaired the earth...
What you need to Know When Getting Payday Loans in Florida?
What you need to Know When Getting Payday Loans in Florida?
You need to be aware of the laws and restrictions that govern when getting payday loans in Florida – click here for more. When you...
Take Control of your Future with Professional year in Accounting
Take Control of your Future with Professional year in Accounting
2 or more years of study at an Australian university can be an experience of a lifetime. You will learn your subject through a world-class...
Small Business Equity Financing Forms - 6 Tips
Small Business Equity Financing Forms – 6 Tips
Many factors lead to a good company. But beside a flexible business model, the most critical thing is a successful business coach and a rockstar...
ICICI Bank Vehicle Loan for newly Opened Transportation Agencies
ICICI Bank Vehicle Loan for newly Opened Transportation Agencies
Choosing an ICICI Bank vehicle loan can make buying your dream vehicle much easier. With competitive rates, flexible terms, and quick approval, it’s a smart...
Evaluating your Investment Strategy
Evaluating your Investment Strategy – Tips to review your Portfolio?
Just like a car needs regular maintenance to run smoothly, your investment portfolio requires periodic reviews to stay on track and achieve your financial goals....

New Releases

Natural Hair Plantation for Women of any Age no Surgery
July 1, 2025

Natural Hair Plantation for Women of any Age with no Surgery

While genetics, hormonal changes, aging, and medical conditions contribute to hair loss, modern hair transplantation techniques offer a viable solution. Hair plantation, or hair transplantation,…

Eyeliner for Hooded Eyes to apply before applying Eyeshadow
July 1, 2025
Eyeliner for Hooded Eyes to apply before applying Eyeshadow
Comparing Paid and Free Website Builder for Small Business
July 1, 2025
Comparing Paid and Free Website Builder for Small Business
Google Search Console for SEO Tools for every Webmaster
July 1, 2025
Google Search Console for SEO Tools for every Webmaster
Digital Marketing Guest Post best practices to boost Sales
July 1, 2025
Digital Marketing Guest Post best practices to boost Sales
Deep Stretch Marks on Thighs and Belly during Pregnancy
June 26, 2025
Deep Stretch Marks on Thighs and Belly areas during Pregnancy
Fade Pregnancy Stretch Marks appear as Streaks or Lines on the Skin
June 26, 2025
Fade Pregnancy Stretch Marks appear as Streaks or Lines on the Skin
The best Guest Posting Website to boost your Online Presence
June 26, 2025
The best Guest Posting Website to boost your Online Presence
Digital Marketing Firms for Startup WordPress Blogs
June 25, 2025
Hi-Tech Digital Marketing Firms for Startup WordPress Blogs
Best Foods and 7 Day Diet Plan for Weight Loss help for Housewives
June 25, 2025
Prescribed Best Foods with 7 Day Diet Plan for Weight Loss Journey
Advanced Stage 3 Breast Cancer in Men and Women
June 25, 2025
Advanced Stage 3 Breast Cancer in Men and Women but Treatable
Explain Digital Marketing to Content Marketers for Leads
June 25, 2025
Explain Digital Marketing to Content Marketers for Sales Leads
Best Digital Marketing Agencies to boost AdSense Earning
June 24, 2025
Best Digital Marketing Agencies to boost AdSense Earning
Termites in House? Pest Control Services to Save Damage
June 24, 2025
Termites in House? Pest Control Services to Save Damage
ICICI Bank Vehicle Loan for newly Opened Transportation Agencies
June 24, 2025
ICICI Bank Vehicle Loan for newly Opened Transportation Agencies
SBI Personal Loan Interest Rate Comparing with Other Banks
June 24, 2025
SBI Personal Loan Interest Rate Comparing with Other Banks
Libra Daily Love Horoscope for unmarried Librans Students
June 24, 2025
Libra Daily Love Horoscope for unmarried Librans Students
Why Bajaj Finserv Personal Loan is a best Choice for you?
June 24, 2025
Why Bajaj Finserv Personal Loan is a best Choice for you?
explore us...

OUR FACILITIES

  • Login
  • Our Background
  • Privacy
  • WordPress.org

CONTACT INFO

  • Do WhatsApp
  • Reach us

SEO GUEST POSTING

Do you like to publish your Stories near Quality Audiences? If so, “OneStop Shop” is the best platform for you. We are one among the vastly growing Indian Blog. Reach us to publish your Stories with lifelong No-Follow links.

WHY ONESTOP?

We are here to bring high Quality Information. As a multi-niche platform we have spend several years for Collecting various useful Stories. Dream to establish a domain where from you can get all your day today required information. We covers Animals to Zoology.
©2014-2025 JHARAPHULA, ALL RIGHTS RESERVED.
Show Buttons