Microsoft Small Basic

Program Listing: XPF736
' Sample Code for Network Object

LF = Text.GetCharacter(10)
url = "http://technet.microsoft.com"
txt = Network.GetWebPageContents(url)
eol = Text.GetIndexOf(txt, LF)
TextWindow.WriteLine(Text.GetSubText(txt, 1, eol - 1))
path = Network.DownloadFile(url)
TextWindow.WriteLine("One file downloaded as " + path)