Topic by Prasad
Hi All,
i have used below code for ServerConfigProperty.
private string x;
[ServerConfigProperty(DefaultValue = "12345")]
public string yyy
{
get
{
return x;
}
set
{
x = value;
variable.ReportId= x;
}
}
class:
class variable
{
public static string ReportId = "";
}
when i change property value in addin manager, it is not picking new value, always taking default value only.
please help.
Thanks
Prasad