Hi mchamo,
Your method is good.
Also, you can use the following javascript code to hide and show the control
- function Uploader_Hide()
- {
- var uploader = document.getElementById('<%= Uploader1.ClientID%>');
- uploader.style.display = "none";
- }
-
- function Uploader_Show()
- {
- var uploader = document.getElementById('<%= Uploader1.ClientID%>');
- uploader.style.display = "";
- }
Hope it helps.
Regards,
Jeff