Hi guys,
I am trying to create an application in VS.Net. this app will include multiple sub applications, example
lets say the app is called Main_APP and We need this Main_App to instantiate objects from the following sub applications "Chats, Forums, PhotoGallery and of course the User object etc.... the common denominator is the user object.
creating the following as Web Sites in VS.Net will not be a good idea since there is no way to have the objects share the same namespace
Main_APP.member
Main_App.Chats
Main_App.Forums
the only alternative I can think of is to create a solution and create web applications not websites which means I have to manually copy the dll files for all sub application to the Main_App Bin folder in order to use them.
can anyone think of any alternative way of doing this while maintaining the main Application Separate from the sub systems?
the other part is some of the subsystems already exists in VB.Net and the new application will use C#, I know when creating websites we can mix and match languages but can we do the same in wep applications since there is no App_Code folder there?
Thanks
Start Free Trial