Hi
i would like download ab File from a Webserver.
The URL is like:
www.Server.net/script.php?r=XX
The Server generate a GPX File for Download.
Whith this Code a can Download the File, unfortunately i cant get the File Name from the Server.
(with the Browser i get the File Name)
Dim h_dl_gpx As HttpJob
Dim url As String = "https://www.Server.net/script.php?r=XX"
h_dl_gpx.Initialize("TestGPX",Me)
h_dl_gpx.Download(url)
Wait For (h_dl_gpx) JobDone(h_dl_gpx As HttpJob)
How can i get the Filename or save the File under a defined File Name??