• 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
5 5 92
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

Style your Tank with the Right Gravel - Colors and Options to match
Style your Tank with the Right Gravel – Colors and Options to match
Creating a visually stunning aquarium involves careful consideration of various elements, including the type of fish, plants, decorations, and lighting. One often overlooked but crucial...
3 Significant Health advantages of having Plants at Home
4 Significant Health advantages of having Plants at Home
There’s a reason for everyone’s obsession with plants. The luxuriant blossoms and leaves of indoor plants add more beauty and comfort to our homes than...
How to Design Human Health lighting for your House?
How to Design Human Health lighting for your House?
First of all, what lighting methods can be used to create which effect? According to different design techniques. As shown in the figure below, there...
Create a Stylish look using Glass and Mirrors in your Decor
Create a Stylish look using Glass and Mirrors in your Decor
Glass and mirrors can bring light and balance to any space in your home. They also maximize the area to make it look spacious. Using...
Where to Find the top Swimming Pool Builders in Orange County?
Where to Find the top Swimming Pool Builders in Orange County?
Swimming pools have become famous since it has been known to fully attract a backyard with its unique and elegant designs. However, only a few...
19 vital Equipments, Tools and Gadgets you need for New House
19 vital Equipments, Tools and Gadgets you need for New House
Moving into a new house can be exciting for anyone. Indeed, you feel like going shopping immediately to get everything you see. Yet, there are...
What is the best Trees for Growing in Pots?
What is the best Trees for Growing in Pots?
Growing trees in pots is a great way to add some greenery to your home or patio. It’s also a great option for people who...
List of Pool Accessories lounge Chair, leaf Skimmer or LED Lights
List of Pool Accessories lounge Chair, leaf Skimmer or LED Lights
Keeping up with the day-to-day upkeep and responsibilities that come with owning a swimming pool may be time-consuming and frustrating. As a result, it’s a...
Smart Storage Basics to Store your Seasonal Decor Like a Pro
Smart Storage Basics to Store your Seasonal Decor Like a Pro
Cooler temps mean the holidays are coming and bringing with them the cozy seasonal decor that we love. Out come the apple-spiced candles, pumpkin-themed everything,...
Why do you need Termite Inspection along with Home Inspection?
Why do you need Termite Inspection along with Home Inspection?
When buying a new home, it is crucial to go for a general home inspection. It is a critical step to take that ensures you...

New Releases

Eyeliner for Hooded Eyes to apply before applying Eyeshadow
July 1, 2025

Eyeliner for Hooded Eyes to apply before applying Eyeshadow

Hooded eyes are a common eye shape where the natural crease of the eyelid is partially or fully hidden beneath the brow bone when the…

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?
Mortgage Loan Lead Generation Strategies for Professionals
June 24, 2025
Mortgage Loan Lead Generation Strategies for Professionals
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