ADS

Friday 13 March 2020

How to write different Type of Login Button Code in ASP.NET

Login Button code in asp.net Type-1 

Hello Everyone, i will demonstrates how to write login button code in asp.net web application using C# and SQL SERVER Database.

coderbaba login page
Login Page

Step-1
Open Visual Studio and Create a new web project using C#.  

Step-2
Add a web form and create login page design.


Step-3
create a database and 2 table
write following query in SQL Server


create database CBDB
user CBDB

create table Roles
(
  RoleId  int primary key identity(1,1),
  Description  nvarchar(50),
  Notes        nvarchar(50),
  CreatedBy    nvarchar(50),
  CreatedDate  datetime
)

create table tblUser
(
  UserName  nvarchar(50),
  Password  nvarchar(50),
  RoleId  int ,
  CreatedBy    nvarchar(50),
  CreatedDate  datetime
)


Step 4:



write following C# code for login button code type-1


 Download source code 


for more understanding this topic you can watch my online tutorial video on my channel 


   
2- Login Button code Type 2:

Step-1:

you can change your login code as follow...

Download source code 





How to create Master page in asp.net:

  follow my video

     Download Source code

Thanks for watching these videos , hit like , subscribe our channel n yes don't forget to share with you friends

Thank you !


No comments:

Post a Comment

Popular Posts