Rank: Member Groups: Member
Joined: 1/14/2009 Posts: 14
|
I've noticed, in the Uploader/ToolBar sample, that many of the ImageUrl references are numbers, such as ImageUrl="00101059". I would like to know how that number gets translated into an actual URL, and where I could go to browse the images available there.
thanks,
Pete
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Those are "built-in images". All built-in images are translated into an Url like below at runtime:
eo_web.ashx?id=xxxxxxx
This is very similar to ASP.NET Web Resource, except that Web Resource only available from ASP.NET 2.0, while ours also works on ASP.NET 1.1.
To browse all the built-in images, you would click the drop down next to the image Url property (for example, BackgroundImage property for ToolBar control) and that should open a drop down with a button called bring up the "Browse Built-In Images". Click that button should bring up a dialog with all the built-in images.
If you would like to modify these images, you can go to your installation folder to look for a file called Images.zip. You will find all images there.
Thanks!
|