These rules have been setup to insure the integrity and readiness of our
servers. Failing to follow these rules may result in account suspension and/or termination.
servers. Failing to follow these rules may result in account suspension and/or termination.
- When using looping logic of any kind make sure that your loops actually
do something and do not loop forever! - Do not load a large amount of data
in to a database and then try to do a "select
* from table" and get it all out on one web page. (Large meaning thousands
of rows.) - Close all database connections when you are done with them on each
page. - DO NOT put database connections in Session or Application level variables/objects.
- Set all objects you use equal to Nothing when you are done with them. (ie. "Set
Conn = Nothing" or "Conn = null")