User-507786106 posted
I need to determine if the website is running on TestServer or Devloper's Server. I am using appSettings to get set the file path,
What code do I use to determine which server I am on? How do I detect the server?
Codes
Test Server
System.Configuration.ConfigurationManager.AppSettings["TESTServerPath"].ToString();
Developer Server
System.Configuration.ConfigurationManager.AppSettings["DevServerPath"].ToString();