Hi i created a extra function for the Umbraco Library.
Code:
public static string GetConfigValue(string ApplicationValue) {
return System.Configuration.ConfigurationSettings.AppSettings[ApplicationValue];
}
Generally it reads a value from the appsettings, this can be handy when you need "
global" values which are depending on the environment you are deploying Umbraco.
IE if you have to deploy umbraco on multiple machines, it can be nasty to change all the XSLT files everytime you deploy, instead its easier to read the setting from the web.config.
Maybe it can be implemented int the current source.