P
Peter Judge
Guest
If it follows the rules per RFC 3986 then you should use the Encode() method on the URI object. Basically this- so something like def var myURI as OpenEdge.Net.URI. def var encodedUri as character. myURI = new URI(' http://blah.com/blah?some=x and y'). encodedURI = myURI:Encode().
Continue reading...
Continue reading...