URL encoding

  • Thread starter Thread starter farseer
  • Start date Start date
F

farseer

Hi,
Are there any built in functions of one of the native anscii C++
libraries that would allow me to encode a URL? and example would be to
convert "+" to "%2b", double quotes to %22, etc...
 
farseer said:
Hi,
Are there any built in functions of one of the native anscii C++
libraries that would allow me to encode a URL? and example would be to
convert "+" to "%2b", double quotes to %22, etc...

WinInet.dll has InternetCreateUrl and InternetCrackUrl that do this
encoding.
 
Back
Top