2

I am looking for references on 3-tier architecture with ASP.Net. Can you please provide some links?

Chris Kooken
  • 32,730
  • 15
  • 85
  • 123
user
  • 61
  • 1
  • 8
  • have a look here: http://stackoverflow.com/questions/2011698/3-tier-architecture-in-need-of-an-example – BlackICE Mar 19 '11 at 15:41

2 Answers2

0

Sharp Architecture is a very good starting place. Not only is it a framework, but it will help you learn the fundamentals of n-tiered development, while making it easy and comprehendable to design your application.

http://www.sharparchitecture.net/

It uses Castle, NHibernate and asp.net mvc.

Chris Kooken
  • 32,730
  • 15
  • 85
  • 123
0

The Csla framework is designed to build your business objects on top of, using n-tier architectures. You objects can be used in any UI technology as they'll fully support databinding, and data access is 100% up to you so Sql Server is easy to use, whether its via straight ado.net, EF, Linq 2 Sql or NHibernate.

If you want something that excludes anything but Asp.Net, C# and Sql server though, well you're probably not going to find it.

http://www.lhotka.net/cslanet

Andy
  • 8,432
  • 6
  • 38
  • 76