Skip to content

Tuts Corner

Tutorials for Life!
  • HOME
  • HEALTH
  • BEAUTY
  • FASHION
  • EDUCATION
  • RELATIONSHIPS
  • ASTROLOGY
  • WEB DESIGN & CODING
    • PHPPHP TUTORIALS
    • WORDPRESSWORDPRESS TUTORIALS
    • MYSQLMYSQL TUTORIALS
    • HTMLHTML TUTORIALS
    • CSSCSS TUTORIALS
    • JAVASCRIPTJAVASCRIPT TUTORIALS
    • JQUERYJQUERY TUTORIALS
    • ASP.NETASP.NET TUTORIALS
    • VISUAL BASICVB.NET TUTORIALS
    • C++C++ TUTORIALS
  • COMPETITIVE EXAMS
  • KITCHEN TIPS & TRICKS
  • HOUSEKEEPING
  • RECIPES
  • PAPER CRAFTS
  • FABRIC CRAFTS
  • SCIENCE & TECHNOLOGY
  • BIOGRAPHY
  • SOCIAL MEDIA
  • REVIEWS
  • NEWS
  • BEAUTY TIPS IN HINDI
  • HEALTH TIPS IN HINDI
  • BEAUTY TIPS IN MALAYALAM
  • ABOUT US
  • CONTACT US
  • PRIVACY POLICY
  • COOKIE POLICY
  • DISCLAIMER

Tuts Corner

Tutorials for Life!
  • HOME
  • HEALTH
  • BEAUTY
  • FASHION
  • EDUCATION
  • RELATIONSHIPS
  • ASTROLOGY
  • WEB DESIGN & CODING
    • PHPPHP TUTORIALS
    • WORDPRESSWORDPRESS TUTORIALS
    • MYSQLMYSQL TUTORIALS
    • HTMLHTML TUTORIALS
    • CSSCSS TUTORIALS
    • JAVASCRIPTJAVASCRIPT TUTORIALS
    • JQUERYJQUERY TUTORIALS
    • ASP.NETASP.NET TUTORIALS
    • VISUAL BASICVB.NET TUTORIALS
    • C++C++ TUTORIALS
  • COMPETITIVE EXAMS
  • KITCHEN TIPS & TRICKS
  • HOUSEKEEPING
  • RECIPES
  • PAPER CRAFTS
  • FABRIC CRAFTS
  • SCIENCE & TECHNOLOGY
  • BIOGRAPHY
  • SOCIAL MEDIA
  • REVIEWS
  • NEWS
  • BEAUTY TIPS IN HINDI
  • HEALTH TIPS IN HINDI
  • BEAUTY TIPS IN MALAYALAM
  • ABOUT US
  • CONTACT US
  • PRIVACY POLICY
  • COOKIE POLICY
  • DISCLAIMER

ASP.NET : Login page using Object Oriented Concept (C#)

  • by Author
  • May 13, 2013July 5, 2019
Spread the love

Login page(database connection) using class concept

C# programming using object oriented concept:
Step 1 :- Create a table which contains three columns id,username and password
op1

Step 2 :- Create an operation class which contains database connection codes

op2

Step 3 :- Create a container class which contains get and set method for each variable

op3

Step 4 :- Create a provider class and in that provider class the object for operation class is created.It contains the code to retrieve data from database and also specify the stored procedure.Here “sel_login” is the stored procedure to select data from database.And the stored procedure is
ALTER PROCEDURE sel_login(@username varchar(50),@password varchar(50))

AS
select * from candlogin where username=@username and password=@password
RETURN

op4

Step 5 :- Create an asp page and design a login page

op5

Step 6 :- Create object for provider class and container class and write the code in login link button event

op6

Watch Video Tutorial of ASP.NET : Login page using Object Oriented Concept (c#)

Recommended For You

  • Home Remedies for High Blood Pressure, Ayurvedic Hypertension TreatmentHome Remedies for High Blood Pressure, Ayurvedic Hypertension Treatment
  • How to Cut a Pomegranate | How to Peel a PomegranateHow to Cut a Pomegranate | How to Peel a Pomegranate
  • JavaScript Tutorial – Email Validation, Check email address formatJavaScript Tutorial – Email Validation, Check email address format
  • How to validate a checkbox in form using JavaScriptHow to validate a checkbox in form using JavaScript
  • PMI Certification | PMI Certification Training | PMI Certification Requirements | PMI Certification CostPMI Certification | PMI Certification Training | PMI Certification Requirements | PMI Certification Cost
  • Home Remedies To Remove Dark Underarms in HindiHome Remedies To Remove Dark Underarms in Hindi
Tags:oop login using c#

Site Search

Find Us On Facebook

Facebook

Subscribe for Daily Videos

Popular Posts

  • Fast Ways to Lose WeightFast Ways to Lose Weight
  • Get Rid of Pimples: Home Remedies for Pimples
  • Top 10 Skin Whitening Foods to EatTop 10 Skin Whitening Foods to Eat
  • Grandma’s Tips To Lose Weight at HomeGrandma’s Tips To Lose Weight at Home
  • How to Treat Arthritis in the Knee Naturally at HomeHow to Treat Arthritis in the Knee Naturally at Home
  • Top Paying Jobs With An Associates Degree in Criminal JusticeTop Paying Jobs With An Associates Degree in Criminal Justice

Random Posts

  • JavaScript Tutorial – Phone Number Validation, Check digits and minimum length
  • Gifts According to Zodiac Signs
  • How is Not Recycling Goods Affecting Us?
  • Are Children and Happiness Correlated?
  • DIY Homemade Papaya Face Mask Recipe

Recent Posts

  • Top Paying Jobs With An Associates Degree in Criminal Justice
  • How to Speed Up Metabolism After 50
  • Top 10 List of Foods that Increase Metabolism
  • How to Get Rid of An Old Car for Money
  • How to Lose 20 Pounds Fast Without Exercise

TutsCorner.com © 2020 | Sooraj Mohan

Go to mobile version