PDA

Click to See Complete Forum and Search --> : Multi-tier ASP.NET Development using DLL files...


effekt26
Dec 3rd, 2006, 03:50 PM
hi all,

I am currently developing a multi-tier asp.net project...and would like to separate the tiers into dll files (except, of course the aspx pages, or the presentation layer)

So far all i am successfully able to do is separate the tiers into sepeate class files in the one project.

I cant seem to call any dll from other dll's or the presentation layer. i think its a reference issue, but i have ensured that they are members of the refenced items.

basically i need to create a dll for each tier, in the name space of Company.Application.TierName...

how could this be done, sorry if this is a dumb question.

Thanks, Justin

DNA7433
Dec 4th, 2006, 01:06 PM
You need to create a new project for each DLL you intend to create. Then you can reference those projects (such as a Business Layer) from another project (such as Presentation). Let us know if this was too brief!