Hi,
Yes. Here is a working example:
http://demo.essentialobjects.com/Default.aspx?path=AJAXUploader\_i6You can take a look of the .ascx source code for that sample (the full source is installed on your machine) to see how it works. Basically you do it something like this:
Code: HTML/ASPX
<eo:AJAXUploader ....>
<LayoutTemplate>
your custom layout goes here....
</LayoutTemplate>
</eo:AJAXUploader>
You would place your own HTML around a number of pre-defined "place holders" inside LayoutTemplate. Each of the place holder represents an uploader UI element. For example, one would represent the file list. If you do not wish to have the file list, just make sure your layout template does not include the file list place holder.
All changes are in .aspx/.ascx, no VB/C# coding is needed.
Thanks!