DownloadURL Property



 
The DownloadURL property contains the URL of the file.


Syntax

    [str=] SiteKiosk.Network.Downloads.Item(index).DownloadURL
Possible Values
    String that retrieves the URL of the file.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the URL of the first download.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Network.Downloads.Item(1).DownloadURL);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top