1

I have an ASP.Net website built in .net 3.5. When clicking on one of the aspx page, I want to open an MVC appliation inside that page. MVC app is developed by another company. What is the best way of doing that?

Scott Hanselman's Article doesn't include this scenario I guess.

Nexus23
  • 6,195
  • 9
  • 50
  • 67

1 Answers1

1

It depends on what kind of interaction you are expecting between your app and the externally developed app. If the UI isn't going to interact between them then an iframe is probably what you're looking for. If it is going to interact then you can interact between them using exposes apis or web services on both sides.

WestDiscGolf
  • 4,098
  • 2
  • 32
  • 47