Hello!

I want to download a page and get nothing when i call this function with a string url: Checkpage("http://freefl.free.fr/presentvu.htm";)

Protected Function CheckPage(url as string) As string
   dim ttt as new HTTPSocket
   dim s,address as string
   address = url
   ttt.yield = true
   s = ttt.get(address,3)
   return s
End Function


But I get the page all right when I put the textual url in the get call instead of the variable :

Protected Function CheckPage(url as string) As string
   dim ttt as new HTTPSocket
   dim s,address as string
   address = url
   ttt.yield = true
   s = ttt.get("http://freefl.free.fr/presentvu.htm",3)
   return s
End Function

What should I do ? I must miss something here, maybe some encodings setting ?

Thanks!
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to