 |
| ASP.NET 3.5 Basics If you are new to ASP or ASP.NET programming with version 3.5, this is the forum to begin asking questions. Please also see the Visual Web Developer 2008 forum. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 3.5 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

March 14th, 2009, 10:23 AM
|
|
Registered User
|
|
Join Date: Mar 2009
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
ASP.NET 2008 WITH C#.NET 2008 N-TIER APPLICATION
Dear All;
I'm new in asp.net with c#.net n-tier application.
i have a design like these:
1. application layer
2. business layer
3. data access layer
4. data stored
here is my problem how can we communicate its layer?
can i have the link so that i can solve my problem..
thank you very much..
honorable
Last edited by Honorable; March 16th, 2009 at 02:58 AM..
Reason: add
|
|

March 14th, 2009, 12:03 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Posts: 2,189
Thanks: 5
Thanked 59 Times in 57 Posts
|
|
Hello..
Sorry, what are you asking? How to comunicate between layers?
__________________
HTH
Gonzalo
================================================== =========
Read this if you want to know how to get a correct reply for your question.
(Took that from Doug signature and he Took that from Peter profile)
================================================== =========
My programs achieved a new certification :
WORKS ON MY MACHINE
================================================== =========
I know that CVS was evil, and now i got the proof.
================================================== =========
|
|

March 14th, 2009, 12:29 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Hi there,
You may want to take a look here: http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=476
It's not *the* link, but it's at least "a link" on N-Layer design.
Cheers,
Imar
---------------------------------------------------------------------------------------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of Beginning ASP.NET 3.5 : in C# and VB, ASP.NET 2.0 Instant Results and Dreamweaver MX 2004
Want to be my colleague? Then check out this post.
|
|
The Following User Says Thank You to Imar For This Useful Post:
|
|
|

March 14th, 2009, 01:01 PM
|
 |
Wrox Staff
Points: 18,059, Level: 58 |
|
|
Join Date: May 2003
Posts: 1,906
Thanks: 62
Thanked 139 Times in 101 Posts
|
|
In addition to Imar's excellent article, Wrox has a very nice book all about building an n-Tier ASP.NET solution:
http://www.wrox.com/WileyCDA/WroxTit...764584642.html
__________________
Jim Minatel
Associate Publisher, WROX - A Wiley Brand
Did someone here help you? Click  on their post!
|
|

March 14th, 2009, 02:12 PM
|
|
Friend of Wrox
|
|
Join Date: Sep 2005
Posts: 166
Thanks: 2
Thanked 33 Times in 33 Posts
|
|
As well as these two very useful but shameless plugs, there is the official Microsoft guide to creating n-tier applications. See http://www.codeplex.com/AppArchGuide
It's not exactly light reading, but it's given me a few ideas in the past, and is apparently based on much of the best practice actually used there.
(Of course, I'm sure the Wrox book is far superior, so that should be your first choice  )
|
|

May 22nd, 2009, 09:12 AM
|
|
Registered User
|
|
Join Date: Mar 2009
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
n-tier application
Hi, there,
I have a question regarding/ implementing n-tier application
How can i create a layer?
1. is it put in the app_code folder?
or a separate class library.
2 what is the most advantage between
layer in putting app_code or a different class library
thnks
|
|

May 24th, 2009, 07:26 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Hi there,
Separate layers don't have to be in separate projects, although they typically are. By putting your code in separate libraries, they become easier to version, update and maintain. However, you could put everything in a single App_Code folder (if using Web Site Projects) or some other folder (when using the Web Application Project model) and still speak of a layered application.
The article series I linked to show how to do both. The 2.0 articles are using App_Code while the 3.5 articles use a separate App_Code folder.
Cheers,
Imar
|
|
The Following User Says Thank You to Imar For This Useful Post:
|
|
|
 |