I believe both '"test" : test' and 'test : test' are legal. It makes no difference either way as the statement fails on 'var test = cocoon.request.getCookies()[0].value()'
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 30 November 2004 11:09 To: [EMAIL PROTECTED] Subject: RE: retrieving a cookie value in flowscript - Email has different SMTP TO: and MIME TO: fields in the email addresses > function contact() { > var test = cocoon.request.getCookies()[0].value() > cocoon.sendPage( "test.jx", { "test" : test } ); } the correct syntax is: cocoon.sendPage( "test.jx", { test : test } ); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
