which shows on the status line when you hover over it as "http://www.storename.com/Basket.aspx" - everything works great.<li><a href="/Basket.aspx">View Cart</a></li>
However when it runs on the localhost it comes up "http://localhost/Basket.aspx" and does not run because the storename is missing.
If I add a tilde
the status line resolves as: http://localhost/storename/~/basket.aspx[/quote] which of course does not run. I've been scanning html tutorials and AC7 elements which uses both types of urls but I can't determine why this is failing or how to correct it. Does anyone have any other ideas? Is there a way to tell the site it is running from the server or from the localhost so it will resolve the url properly?<li><a href="~/Basket.aspx">View Cart</a></li>