I have written an asp/vbscript script that returns some personal details to
a flash frontend using the following code.
response.write "vRESPONSE=success&vUSER_ID=45&vNAME=Fred&vCOMPANY=some
company"
This works fine until the variable value has an ampersand in it i.e
response.write "vRESPONSE=success&vUSER_ID=45&vNAME=Fred&vCOMPANY=Fred &
Co."
and then it fails since it looks like the start of a new variable name.
So I then tried to urlencode the values so ampesand became %26, which works
fine for the ampersand but then some other characters get screwed up,
particuarly extended unicide values.
Could anyone give me any pointers on how I should be doingf this?
Many thanks
Dave