views:

10

answers:

1

I have a sitemap file in my project. None of the links on this file are contained on our server. They all are located on another project. We need this sitemap to mimic the navigation of the original site.

Right now the url is setup like this:

url-"~/folder a/file.aspx"

What I would like to do is dynamically change the server location of these links. Is there a way to do that?

Basically I don't want to have to hard code the dev.server or the prod.server in the sitemap.

A: 

Your best bet is probably to create a custom XmlSiteMapProvider with a "base URL" property that your URLs will be appended to. You can then change your base URL to the appropriate site (dev/prodction).

nizmow