I have structured my solution so that I have a web app and a class library for reports. The reports are based on table adapters. the table adapters have connection strings.
in the table adapter properties it has
connection name = SCREENINGWEBConnectionString (Settings)
that name matches up to the web.config on the web site. Also defined in myreports.dll.config
The table adapters in my web site have
connection name = SCREENINGWEBConnectionString (Web.config)
Is this the correct way to connect reports in a class library to the web site's data source? My reports throw a SQL server connection error. (Still trying to figure out the best way to capture those errors)
in the table adapter properties it has
connection name = SCREENINGWEBConnectionString (Settings)
that name matches up to the web.config on the web site. Also defined in myreports.dll.config
The table adapters in my web site have
connection name = SCREENINGWEBConnectionString (Web.config)
Is this the correct way to connect reports in a class library to the web site's data source? My reports throw a SQL server connection error. (Still trying to figure out the best way to capture those errors)