URL Property
The URL property contains the URL of the dialog page.
Syntax
Possible Values
String that specifies or retrieves the dialog url.
|
The property is read/write.
Remarks
Examples
The following example shows an HTML dialog.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.URL = "http://www.myaddress.com";
mydialog.ShowDialog();
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top