Our main application has both a asp.net and winforms component. There is a class that is used by both sides and needs info from either the web.config or app.config files. The class itself does not know if it’s on the client side or on the web server (at this point). We are getting errors when it’s attempting read app.config when it’s on the web side. Is there a way for the class to tell if it needs to read web.config or app.config? My first thought was to put it in a try catch block but I am wondering if there is a more elegant way
Thanks
Our main application has both a asp.net and winforms component. There is a class
Share
You can create the web.config and the app.config. The settings manager will get the right one for your each scenario.