Is there a way to use values from the main web app settings file.
I have a web and separate class files for the reporting, the web imports the reporting class.
I want to dynamicly change the logo on a report base on the value in the web appsettings.
This is how I would do it in the web:
I have a web and separate class files for the reporting, the web imports the reporting class.
I want to dynamicly change the logo on a report base on the value in the web appsettings.
This is how I would do it in the web:
Me
.imgLogo.Value = ConfigurationManager.AppSettings("TrustLogo")
But this currently doesn't work from the reporting class.
Andy