How would you check if an object exists, for example checking if a cookie exists before creating a new one.<BR><BR>My first thought was the <BR>if isObject(sCookie) then ...<BR>structure.<BR><BR>The problem is that if you do a <BR>sCookie = Request.cookies("Cookiename").value.tostring<BR>if sCookie = "" Then<BR>...<BR>This structure will give an error if the cookie doesn't exist.