| | | 5. | | Search your program for references to external resources such as log filenames, database DSNs, etc. As you find them, move them to the global .asa file and store them as Application-level variables. Change the code so it references the Application variables. That way, you can easily change DSN names, sign-ons, passwords, and external file references, regardless of the resources' locations or names. If security is an issue, put the references in an external file and encrypt the file. The point here is that those filenames, paths, machine resources, and database resources can and will change names and locations. In many cases, these changes are outside your control and will break your application. You want to get the references from a location that you can change easily, preferably without recompiling and reinstalling your application. | | |