Use to return the value of a global configuration property.
string GetConfigSetting (string key)
String. Returns the value of the global property passed in the key parameter.
string v, k
k = "myKey"
#if defined PBWEBFORM then
v = GetConfigSetting(k)
#else
v = "N/A"
#end if