I'm building a tag using CDONTS to send e-mail.  All the ASP code I've seen
sets an instantiated server object to Nothing (to destroy the object).  It
dosn't set it to a string "Nothing", though.  The code often looks like
this.

        objMail = Nothing

I imagine Nothing is an ASP/VB object/function or some type.  Nothing won't
be evaluated in ColdFusion, of course.  How can I do this in a <cfscript>
and get the same effect?

        objMail = "Nothing";   ????
        objMail = "";              ????

I allready set it to "Nothing" and it seems to work ok.  Makes me curious
how one destroys a COM object instance.

        Thanks,

        Eric Carlisle

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to