Sorry in advance for the X-Treme Newbie question. I've got some xml files (actually they're config files for ASP.NET apps in xml format). Certain aspects of the xml is dependant on what server it's being deployed to. For example, I may have:
<add key="Local Directory" value="C:\AppsDir\" />
but when this goes to the next level, it must be:
<add key="Local Directory" value="C:\Program Files\AppsDir" />
I need to do this with paths, databases, and such. Any help would be greatly appreciated.
Thanks,
Eric
<add key="Local Directory" value="C:\AppsDir\" />
but when this goes to the next level, it must be:
<add key="Local Directory" value="C:\Program Files\AppsDir" />
I need to do this with paths, databases, and such. Any help would be greatly appreciated.
Thanks,
Eric