Well, given that all the code in a project gets compiled into one assembly, you can't easily break apart one web project. I suppose you could create a separate project for the members section. You just have to make sure you don't get into a situation where each project requires access to classes in the other. Then you'll get yourself into a circular reference problem. Of course, building 1 site out of two different web application projects could get you into other kinds of trouble.
|