Problem with posting variable with value having URL “Http://”

February 11, 2008 at 7:59 am (Flex)

With flex there is a security sand box error when you try to post a variable with value having Http://

i.e. Val=http://www.google.com;
The solution to this is below.

Just escape the value and post it.
i.e Val=escape(http://www.google.com);

Permalink 4 Comments