<--- --------------------------------------------------------------------------------------- ---- Blog Entry: Handling NULL Values In ColdFusion Author: Ben Nadel / Kinky Solutions Link: http://www.bennadel.com/index.cfm?dax=blog:117.view Date Posted: Jul 5, 2006 at 3:01 PM ---- --------------------------------------------------------------------------------------- ---> // Loop while we did not hit a "null" value. while (StructKeyExists( REQUEST, "ZipEntry" )){ // .... more code here .... // Get the next zip entry (finish if null). REQUEST.ZipEntry = REQUEST.ZipInputStream.GetNextEntry(); }