|
 |
|
Now before your ASP Script ends, you need to close the database so others can use it
(if it can't be written to and needs to be) to do this is easy. Just call the Close
method on both the Recordset and the Connection. Be sure to close the recordset
first so you don't get an error when you do close it.
Example:
RS.Close
Conn.Close
By: Matthew Holder
|
|
|
|