Fix Example AjaxGetWebFile

How can I report a fix in the examples or the wiki? I suggest you create a group like PhoneGap, News, … to submit such infos.

fix needed in Example AjaxGetWebFile:
MsgBox msg -> MsgBox(msg) (otherwise error)

txtURL.value http://… -> https://… (link has changed)

Where exactly are you seeing this?

Open the AppStudio Example Code.

The link must be
https://www.microsoft.com/robots.txt
not
http://www.microsoft.com/robots.txt

and
MsgBox msg
must be
MsgBox (msg)

Normally you don’t need the (), but in this project it works only with MsgBox (msg)

Thank you!

Both have been fixed.