Click here to Skip to main content
15,893,814 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hi,
I developed and now want to use an application which comprises of more than one web application
all apps developed in VS 2010 C# asp.net
example:

Application1 with DB1
Application2 with DB2
Application3 with DB3

my page should look like

MAIN Header with logo
------------------------------------------------------------------------------------
Left Pane | Right Pane
Application1 | Reports(based on application selection)
Application2 |
Application3 |

display login page based on application selection at centre
Posted
Comments
Sergey Alexandrovich Kryukov 28-May-15 14:40pm    
So, one application or three? What would this "more then one under single" practically mean?
—SA

1 solution

First of all you should understand the main type of application that you are willing to develop. You're having a web application, (develop using ASP.NET) and now what you are going to develop is a service (not to be confused with Web Services) under the same web application that you have already created. Services include (as an example),


  1. Users -- for Authentication purposes
  2. Chat and posts -- for updates
  3. Bla bla -- for other gibberish purposes...


There are other enormous types of services that your web application would support. It depends on your, for what type of services you would want to support and allow. Each of these services can be associated with their own database, which would hold objects (tables) and other stuff (attributes, stored procedures etc.) to run your model-based processes. It is upon you to use which database for which service. If this is a Model-view-controller based pattern, then you should know that your Controller always allows you to hold control over the response being streamed down to the client.

You have only provided us with a sample sketch of your View (perhaps a layout file) and we have no idea what your application is, what it would do in those other three services... And so on. Anyways, still you can use different (three) controllers to get the data from different sources and fill up your view for the user to use.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900