Version

ImageURL Property (WebGaugeDeploymentScenario)

URL destination of the image, relative to the current page's URL. Used when the Mode property is set to FileSystem.
Syntax
'Declaration
 
Public Overridable Property ImageURL As String
public virtual string ImageURL {get; set;}
Remarks
This property is directly linked to the FilePath property. When changing the value, it is usually necessary to change the FilePath as well, so these two properties correspond to each other. There are reserved tokens (keywords) typically found in this property value. They are useful, but not required to name the individual image files. Potential tokens: #CLIENT - ClientId of the current web control (UltraGauge) in context. #SESSION - Unique Session identifier. #EXT - Default file extension; determined by the ImageType property.
Example
Some acceptable values:
ImageUrl = "GaugeImages/#CLIENT_#SESSION.#EXT" (this would store images in a folder named GaugeImages under the current page's folder).
ImageUrl = "../GaugeImages/#CLIENT_#SESSION.#EXT" (this would store images in a folder named GaugeImages, one directory up from the current page's folder).
ImageUrl = "/GaugeImages/#CLIENT_#SESSION.#EXT" (this would store images in the folder C:\inetpub\wwwroot\GaugeImages).
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also