Retrieves the name of the HTML Application (HTA).
Syntax
HTML <HTA:APPLICATION APPLICATIONNAME=sAppName> Scripting [ sAppName = ] oHTA.applicationName
Possible Values
sAppName String that specifies the application name. The property is read-only with no default value.
Remarks
When set to true, the singleInstance property checks the applicationName value before launching an instance of the application. For this check to be valid, the applicationName property must have a unique value assigned to it. You can use the applicationName property to identify a single application, regardless of the URL used to access it.
Example
This example shows how to retrieve the applicationName property.
Sample Code
<HTML> <HEAD> <HTA:APPLICATION ID="oHTA" APPLICATIONNAME="myApp" > <SCRIPT> alert("applicationName = " + oHTA.applicationName); </SCRIPT> </HEAD> <BODY SCROLL="no"> </BODY> </HTML>
Applies To
HTA:APPLICATION
See Also