[RESOLVED] one project in another project
Question, I have forum project setup on one of our server. Now I would like to add a asp.net page/project in a folder to that forum directory, it will be like this: C:\Inetput\wwwroot\forum\myproject
and then I created the virtual directory for that folder in the IIS manager under forum website. When I browse to that folder by typing the URL out, for instance http://localhost/Myproject it gives me a sever error from that forum.
localhost is pointing to the forum. How can I resolve that? I don't want to do the http://localhost:8080 like that for my project, that's why I put it in there. Please help.
Btwn, my project has a new web.config and default.aspx, etc.. it's completely different project. But I just want to be able to browse it using http://localhost/myproject
Re: one project in another project
That URL should be
http://localhost/forum/MyProject
Forum will need to be a virtual directory too. In IIS, not the Visual Studio web server version.
Re: one project in another project
I resolved this by adding the dll from the forum to the Myproject's bin :) I dont know but it works!