vote up 1 vote down star

I have 2 web application projects. One is my asp.net MVC app and the other is for the admin related functions which is asp.net web forms Dynamic Data. My MVC app would be the main site, but I would want the webforms to work under an Admin folder of the MVC site.

While debugging the application, I would like the "/admin/Default.aspx" link on the MVC site to link to the default page within my Dynamic Data site. How do I accomplish this? I know I can test each project independently.

flag

Are you using the Visual Studio WebServer rather than IIS? – Ian Oxley Aug 5 at 13:10
@Ian: That is correct. All under Visual Studio without using IIS on local machine for development. – RSolberg Aug 5 at 15:35

3 Answers

vote up 1 vote down check

Within the visual studio project, you can right click on a folder and select "Convert to Web Application" which resolved my issue.

link|flag
vote up 1 vote down

You could achieve this behavior via your IIS-Manager. Click on the Website, navigate to the folder you want to behave like a separate application and use right-mouse click and press "convert-to-application".

link|flag
This should work well for the deployment, but what about testing from VS itself running on localhost? – RSolberg Aug 3 at 16:38
In the IIS manager, set you default site location to the location of your MVC app. Add the application for the admin as above. Run at localhost, or set this as the debug location in VS. – ScottE Aug 3 at 16:45
You could use an configurable links to the admin section and back. In the development environment you adjust your configuration to use an absolute path. Alternativly you could try to remap your URLs via the windows hosts file. – Robert Aug 3 at 21:06
vote up 1 vote down

The easiest way would be to run them both in separate virtual directories and use Url Rewriting to push requests for the root to the public site. You can nest ASP.NET applications, but that generally requires quite a bit of fussing with the configuration file to dodge inheritance issues.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.