This dialog box defines a ColdFusion server variable.
For example, if you want to access information stored in the Server.Trademark
variable, enter Trademark
as the variable name.
Server variables can be accessed by all clients accessing the server, as well as by any applications running on the server. The variables persist until the server is stopped. They are created with the ColdFusion CFSET
or CFPARAM
tags (with CFLOCK
).
Server variables are either user-defined or built-in. The following table lists the built-in ColdFusion server variables:
Variable |
Description |
---|---|
Server.ColdFusion.ProductName |
ColdFusion product name. |
Server.ColdFusion.ProductVersion |
ColdFusion version number. |
Server.ColdFusion.ProductLevel |
ColdFusion edition (Enterprise, Professional) |
Server.ColdFusion.SerialNumber |
Serial number of currently installed version of ColdFusion |
Server.OS.Name |
Name of operating system running on the server (Windows NT, Windows 2000, Linux) |
Server.OS.AdditionalInformation |
Additional information about installed operating system (service packs, updates) |
Server.OS.Version |
Version of installed operating system. |
Server.OS.BuildNumber |
Build number of installed operating system. |
The ColdFusion server variable appears in the Bindings panel.