I have a project (web application) which I'v been working on for sometime, and now i want to add it to a different project (web application) a bigger one. I'm working on Visual Studio 2010, c#.
I'v added the 1st project to the bigger one's solution, and added reference in the startup project to the newly added project. now i have a solution with the 2 projects, one of them will be the mainframe, with menu, navigation, logo.
The thing I'm trying to accomplish is to navgaite from the startup porject (the bigger one with the menu) to load aspx pages from the projects i just added.
I'm not sure if my logic is right. anyway, how can I accomplish this?
--Update--
Well the way I'm linking the two web applications (projects) is through Iframe tag, inside a page in the main project.
//This is inside an aspx page in the main project
<iframe src="http://localhost:64534/FolderHome.aspx" frameborder="0" height=1000px width=98% scrolling=auto></iframe>
In my dev machine the projects have different ports of the localhost, I guess that when it will be live the two projects will sit in two different folders. I don't know much about the IIS version.