I am sending a string to asp from flash that looks like this;
&profileID=0jt3f1g10jt3f1g11wt6q1d00jt3f1g1
&profileID=0jt3f1g10jt3f1g11wt6q1d010qxs1m0
&profileID=0jt3f1g10jt3f1g11wt6q1d00fln71v1
The problem is when asp (probably php too) reads this string, it reads it like this
If I am posting a similiar string to an .asp file, would I use the unescape command in flash before the data is posted? Or does the unescape command go somewhere in the .asp file?
well let us see, how are you calling the send function, are you posting data to a php(or whatever), and or getting a response? or your trying to get a data from a php script normally without posting any vars.
I need the “&” because the string sent by flash is multiple vaules seperated by “&”, so when asp reads the string it will look like this; &Value1&Value2&Value3 ect…
And yes, I tried the unescape command and no luck, the string is still being encoded.
*Originally posted by waffe * I need the “&” because the string sent by flash is multiple vaules seperated by “&”, so when asp reads the string it will look like this; &Value1&Value2&Value3 ect…
I never worked with asp, but can’t you just say:
Document.print… “&”+ImportedVar1+“&”+ImportedVar2
Edit: you might want to Ask Rev if you want any asp help, he knows it i think.
I can’t do that because the number of values are dynamic, meaning they change for one user to the next.
I don’t really think it is an ASP problem. URL encoding happens when you pass data though the html headers, so regardless of what program I’m sending to the data is going to be encoded.
I am not working with the asp script, nor do I know much about it.
I am the flash guy on a project working with an ASP guy.:hat:
I have asked the ASP guy the same question of “why can’t you fix the string problem on your end”, and he says “he can’t” because of certain guide lines I don’t under stand.
Crazy, there are 3 programs myself, and now you that can’t find the answer to this question.
g’afternoon, let me first introduce myself. I’m abzoid, rev flash’s brother.
I’m not a Flash guy, but I am an ASP programmer. It should be relatively easy for the ASP programmer that your working with to use the replace command on an intermdiate ASP page to parse the parameter string. The coding would look something like this, assuming he’s using VBScript. You’d pass the existing string to this intermediate page where it would be parsed into the proper format then passed on to the intended page.