HttpUtility.UrlEncode

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a table available that illustrates ***exactly*** what
HttpUtility.UrlEncode encodes?

(I need to decode and encoded string by HttpUtility.UrlEncode in an
unmanaged C++ routine).
 
Is there a table available that illustrates ***exactly*** what
HttpUtility.UrlEncode encodes?

(I need to decode and encoded string by HttpUtility.UrlEncode in an
unmanaged C++ routine).

You could get a lot of information (and code!) from the PHP source code.
Look for the urlencode function
 
Hello Pb,

As for UrlEncode, it is a w3c world wide standard, you can find the
reference here:

http://www.w3.org/International/O-URL-code.html

Also, here is a good page that demonstrate such a simple character table
for ASCII char's url encoding.

#HTML URL-encoding Reference
http://www.w3schools.com/html/html_urlencode.asp

In addition, as you're using umanaged c++, the following MFC/C++ sample may
also helps some.

#URL Encoding--C++MFC
http://www.codeguru.com/Cpp/Cpp/cpp_mfc/article.php/c4029


Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.

==================================================



This posting is provided "AS IS" with no warranties, and confers no rights.
 
Hello Pb,

Have you any further questions on this issue? If there is anything else we
can help, please feel free to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top