Data Browser - Viewing Site  Sector 23 Code Bank Logged in as:  Guest  




           


SettingsPropertyNotFoundException
Trying to load a property using class extending ApplicationSettingsBase and got:
System.Configuration.SettingsPropertyNotFoundException

Solution:
Ensure the field is public (not protected etc), has both get/set, and the appropriate Scope attribute.

[InstallationScopedSetting]
public string Code
{
get{return (string)base["Code"];}
set{base["Code"] = value;}
}

Created By: amos 3/29/2010 3:34:01 PM