AddForbiddenURL Method
The AddForbiddenURL method adds a forbidden URL to the surf area.
Syntax
NavigationInfo.AddForbiddenURL(forbiddenURL)
|
Parameters
forbiddenURL |
String that specifies the forbidden URL. |
Return Value
Remarks
Examples
The following example adds a forbidden URL to the surf area of the first available computer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
navInfo = SiteCafe.Server.CreateNavigationInfo();
navInfo.AddForbiddenURL("http://www.anyurl.com");
navInfo.Send(1);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top