Background:
I have a page using HTML module, which is a Salesman Locator map. The user clicks on a colored region on a map and it displays the Salesmen contact info and such.
This was done using a jpg and a html region mapping, this works fine, but the problem is I need in html to put the link/url where to send the user when they click a certain region
<area target="_self" alt="" href="http://172.0.0.11/Divisions/SalesmenInformation/tabid/170/Default.aspx?SalesNo=444" coords="373,357,363,376,274,377,271,345,329,342,326,317,340,318,360,345,373,348,373,358" shape="POLY" />
Thus the user is forwarded using the following url:
http://172.0.0.11/Divisions/SalesmenInformation/tabid/170/Default.aspx?SalesNo=444
Works fine, but I need in the future to change this ip, currently this site is a test website and the IP is going to change to www.domain.com, but www.dopmain.com is being used by our live website at this moment.
http://www.domain.com/Divisions/SalesmenInformation/tabid/170/Default.aspx?SalesNo=444
What url can I set and not have to change, when I change this sites ip and url?
thanks,
Dean