Click to See Complete Forum and Search --> : n-Tier applications


Arjun
10-23-2005, 11:20 PM
Hi,
I suppose to develop a three tier application. In vb6 i use three projects for the businesslgic, dbconnection and User ineterface. And when i deploy i use MTS server. In same way if i use the approach in dot net i use three projects. And what is the method to access the business logic? I am going to implement that in vb.net windows form. Is webservices is the solution? and what is windows services? please help me.....
-Arjun

Sync
10-24-2005, 03:18 AM
Actually, You can do the same thing in VB.NET as what you did in VB6.
Just add one window application for User Interface.
then add two class library projects for BusinessLogic, dbConnection.
After that, you need to reference those two library projects as "Project References." of Window Application.

If you wanna know about "Web Services and Window Services", just google. :-)

etoostr
10-24-2005, 07:11 AM
And for flexibility you may consider interfaces, but this is not important. It depends on the size of your project and if several people will be involved in the development (now or in the future). E.g. one for dbConnection and one for businessLogic.