Hi,
The uploader will set the display property again.
You can use CSS to hide it:
Server:
uploader.CancelButton.CssClass="HideIt";
(you can also set the css class by javascript)
Client:
<style>
.HideIt
{
display:none!important;
}
</style>
Regards,
Terry