Why does FTB change my links?
On my development machine, if I enter:
<A href="http://localhost/MyProject/Default.aspx?tabid=70" target="">Click here for Directions</A>
FTB removes "http://localhost/" and it becomes:
<A href="/MyProject/Default.aspx?tabid=70" target="">Click here for Directions</A>
If I enter the following on my production machine:
<A href="http://www.mydomain.com/MyProject/Default.aspx?tabid=70" target="">Click here for Directions</A>
FTB changes it to <A href="/Default.aspx?tabid=70" target="">Click here for Directions</A>
Why does this happen? It makes it very hard to move between development and production environments. While I'm developing a new project I often move back and forth between the machines so that my client can review things during the development phase.