|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
HttpUtility.UrlEncodeIs 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). On Fri, 2 Mar 2007 15:18:44 -0800, pb wrote:
> Is there a table available that illustrates ***exactly*** what You could get a lot of information (and code!) from the PHP source code.> HttpUtility.UrlEncode encodes? > > (I need to decode and encoded string by HttpUtility.UrlEncode in an > unmanaged C++ routine). 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. |
|||||||||||||||||||||||