GetURL

GetUrl viene utilizzato per inizializzare una richiesta GET a un server HTTP. Le richieste GET vengono utilizzate per recuperare i documenti sul server HTTP.

Sintassi

GetUrl (STRING document)

Dove:

  • Document: una stringa (esempio: index.html)
Restituisce

Nessun dato restituito.

Esempio

Gli script elencano tutti i codici sotto Microsoft:

Function Main

Dim Ro As Object

cr = Chr(13) + Chr(10)

Set Ro = Registry.Connect("127.0.0.1")

Value = ro.GetFirstKey("SOFTWARE\Microsoft")

While Value <> ""

Echo "Nomechiave = " & value & cr

Value = ro.GetNextKey

Wend

End Function