Reputation: 55022
I am converting an classic aspx app to MVC.
Within classic aspx app there is another app as follows:
foo.com/ - main app.
foo.com/bar/ - contains another app.
I m rewriting foo.com with MVC and curious how I can store foo.com/bar/ within MVC app. should i create another folder and store the aspx app for foo.com/bar in this folder?
What is the best way to do this?
Thanks.
Upvotes: 0
Views: 74
Reputation: 2249
You have several options:
Use area's : http://msdn.microsoft.com/en-us/library/ee671793(v=vs.100).aspx
But I would only do that if the apps work with each other, thus are related.
If the apps are completely stand-alone, I would advise you to make a subfolder. This makes a lot more sense to me.
Upvotes: 1