Click here to Skip to main content
15,914,905 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi Sir/Madam,
How to create login page in asp.net with c# in 3-Tier architecture.Could any one forward the code for login 3-Tier architecture using asp.net with C#
Posted
Comments
AmitGajjar 18-Aug-12 5:57am    
why you want only login page ? there is nothing after login ?

Here a good tutorial:
http://www.4guysfromrolla.com/webtech/110701-1.shtml[^]
Check it out
 
Share this answer
 
There is a difference between, tier architecture and layer architecture, I hope you are asking layered architecture.

Consider below are the layers,

UI
Business,
Data

UI holds an aspx form login page, you can use out of the box login controls that are available in the asp.net 2.0 on the page, combined with Asp.Net Membership Providers, Role Providers, you can implement users and roles, (authentication and authorization).

you can override the default membership/role providers for custom behavior, create your own user, role tables and have the DAO objects at Data layer, have business object for any additional business rules around users/roles. use these objects from Provider.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900