Consider storing any URLs used by your application in the web.config filewhere you can easily update themand then using them to create hyperlinks in your web site dynamically. To do that, you need to decide exactly how to store and retrieve the URLs. Here's one method.
In the web.config file, create an entry like the one shown below:
<appSettings>
<add key="someurl" value="http://www.devx.com" />
</appSettings>
To read this entry from the web.config file, use AppSettings and the key attribute value of the entry, for example:
<asp:HyperLink ID="HyperLink1" runat="server"
NavigateUrl="<%$ Appsettings:someurl %>" Text="Devx">
</asp:HyperLink>
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible.
Submit your tip here.