This documentation is for the old version. Go to the latest Upload Suite docs

ImageFormat.UrlNormal Property

URL to the image which represents the button/icon when it is not pressed, mouse pointer is not hover over it, and the button is not in focus.

Namespace: Aurigma.ImageUploader
Assembly: Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)

Syntax

Visual Basic
Public Property UrlNormal As String
C#
public string UrlNormal { get; set; }

Property Value

A string value that specifies the URL to the image which represents the button/icon when it is not pressed, mouse pointer is not hover over it, and the button is not in focus.

Default value is ""

Remarks

Image URLs can be both absolute (e.g. http://domain.com/images/button1.gif) and relative to the current page (e.g. ../images/button1.gif).

For example, if Image Uploader is inserted to the http://domain.com/ImageUploader/default.aspx page, the relative URLs specified via this property will correspond to the following locations.

Specified URL Expected Location
"/images/button1.gif" http://domain.com/images/button1.gif
"./images/button1.gif" http://domain.com/ImageUploader/images/button1.gif
"images/button1.gif" http://domain.com/ImageUploader/images/button1.gif
"button1.gif" http://domain.com/ImageUploader/button1.gif

See Also

Reference