Problem with posting variable with value having URL “Http://”
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);
