Setting up multiple asp.net websites under a single solution?
-
I'm implementing 2 new sections into my current asp.net website: blogs & forums. These blogs & forums are both open source website projects that I downloaded, so as it stands right now, each one is its own separate website. So I'm curious as to the best way to implement these 2 new sites into my current solution. My plan is to have their url setup as subdomains (i.e. http://blog.MySite.com, http://forum.MySite.com). Should I create 2 separate web projects within my solution (and if so, will I be able to pass session objects from one site to another)? Just curious as to the best way to set this up to ensure the site still moves quickly and doesn't start allocating unnecessary resources (i.e. if I click on my forums, I shouldn't have to load blog data into memory). Thanks.