I have a Project going on in which I will have to develop Two Applications. I am using n-tier Artitecture and have following Projects in A Solution
- DAL
- BLL
- BusinessEntities
- Application1
- Application2
Now I want to Know How can I navigate between the views of these two Applications Normally we do the following to navigate within an Application
@Url.Action("ActionName", "ControllerName", OtherStuff..)
Now How can I navigate from action of one Application to action in Second Application. Thanks
i usually use areas for handle this.
if u like your add other projects like this way u can use Custom ViewEngine. in this way first add route rules like this :
second: add virtual paths of ur app :
and u sould change global.asax :
and finally u should implement ur controller in main application namespace. Do you still need to explain this way?
if u want u can develop CustomAreaViewEngine that can put ur applications to a custom directory like MyModules.