GetURL
GetUrl is used to initiate a GET request to an HTTP server. GET requests are used to retrieve documents on the HTTP server.
Syntax
GetUrl (STRING document)
Where:
- Document- a string (example:- index.html)
Returns
No data returned.
Example
This scripts lists all of keys under 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 "Keyname = " & value & cr
Value = ro.GetNextKey
Wend
End Function