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)
Public Property UrlNormal As String
public string UrlNormal { get; set; }
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 ""
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
|