hello there,
I am having an issue with iis 6.0. Here's the deal, my IT manager decided that he wants to move my web app which was working perfectly fine from one server to the other. The problem is that now there seems to be a path problem because IIS can't seem to find the dataccess.dll or the image folder so obviously it is looking in the wrong places.

lets just say that /new cfv development is the root folder

inside the login page (/new cfv development/Presentation Layer/Front-End/login.aspx) I execute the following code:

Code:
Response.Redirect("~/Presentation Layer/Front-End/Main_Page.aspx")
and i end up getting this url:

/new cfv development/Presentation Layer/Presentation Layer/Front-End/Main_Page.aspx

presentation layer is repeated twice, this is also the case when its looking for the image folder or the dataaccess etc etc. Why is it adding this unnecessary folder to the path? It was working perfectly on the other server and now this. Thanks in advance and I hope I made my self clear.