‎19-11-2015 02:54 PM
‎19-11-2015 03:01 PM - edited ‎19-11-2015 03:03 PM
Hello cerrejon
The is not direct or indirect link between a static web site and the application objects displayed in the pages of this web site
However You can use API to browse the web site definition (GetGeneratedObjects)
Code example (VB script)
Set oWebSiteDescription = oWebSite.WebSiteDescription 'Get list of pzhr Set oObjectGeneratedList = oWebSiteDescription.GetGeneratedObjects For Each oObjectGenerated in oObjectGeneratedList Print GetObjectFromID(oObjectGenerated.GetClassID).GetProp("Name") & " : " & oObjectGenerated.GetProp("Name") Next
Then you need to filter objects of the Metaclass 'Application' and count them.