Thanks for your post!
Based on the understanding, your client is encoding the data in Mime type
"application/x-url-form-encoded", and your server side code wants to decode
the data. Please let me know if I have misunderstood anything.
Current, we are doing research to find out the encoding format of the
"application/x-url-form-encoded" Mime type. If you happen to know the
encoding form, please feel free to post here, this will save us research
time.
Anyway, we will update you ASAP.
Thanks for your understanding.
Best regards,
Gary Chang
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Thanks for your feedback.
Based on the research, there's no WinINET API regarding this, but we may
call the appropriate function in the JScript DLL dynamically. Look for the
Unescape method. The article below shows us how to call the Jscript
function from C++ code:
http://www.codeproject.com/com/jscalls.asp
That being said, parsing remotely provided strings in C++ is inherently
pretty scary. It would be far safer to use .NET for this sort of task, and
.NET has library functions for exactly this purpose.
Hope this helps.