Port - property of the PmaWeb object
Description:
Number of the TCP/IP port. The standard value is 80.
Note:
Property access for
read only. The value of this property is defined in the "
Port TCP/IP" configurator of this object.
Example:
Detects the address on which this application offers its Web pages:
JavaScriptVBScriptSelect and copy to clipboard
var oWeb = pMe.Pm("/Web");
var sAddr = Pm.NetGetAddress(1, oWeb.Port);
Dim oWeb, sAddr
Set oWeb = pMe.Pm("/Web")
sAddr = Pm.NetGetAddress(1, oWeb.Port)