AddAllowedURL Method



 
The AddAllowedURL method adds an allowed URL to the surf area.


Syntax

    NavigationInfo.AddAllowedURL(allowedURL)
    
Parameters
    allowedURL String that specifies the allowed URL.
Return Value
    None.
Remarks
    None.
Examples
    The following example adds an allowed URL to the surf area of the first available computer.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    navInfo = SiteCafe.Server.CreateNavigationInfo();
    navInfo.AddAllowedURL("http://www.sitekiosk.com");
    navInfo.Send(1);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top