0

I am looking for an example of an asp.net website(with source), implemented with 3 layer architecture and has some complexities like user authentication and user permissions, etc. .

Does anybody know such an example?

Ristovak
  • 491
  • 1
  • 5
  • 10

2 Answers2

2

If you're favouring ASP.NET MVC (and I would suggest you should be) then Nerd Dinner (source) is one of the best examples on structuring an application.

Personally I feel that rather than focus on n-Tier/3-Tier architectures you should focus your efforts on responsibly designing web applications using principles like SOLID.

Kane
  • 16,471
  • 11
  • 61
  • 86
  • "Personally I feel that rather than focus on n-Tier/3-Tier architectures you should focus your efforts on responsibly designing web applications using principles like SOLID." Good advice, thanks :) – Ristovak Aug 04 '10 at 14:47
1

KiGG is a nice application to use for reference.

Source code can be found on codeplex: http://kigg.codeplex.com/

Jay
  • 2,644
  • 1
  • 30
  • 55