I want to send data to the URL of my server from a Flex application. im using the following
UrlParam = UrlParam + '&name='+ name.text + '&business=' + buisness.text; navigateToURL(new URLRequest(UrlParams),'_self');
im problem, however, is that if I enter the business with an ampersand ("A & b.com"), then the name does not send.
Does Flex have anything out of the box to encode from & to %26 ?
source share