Hello, I would know how can I disable or enable Ajax Uploader control from Code Behind, since if I set Enabled = false to the button it shows another button to upload.
Thank you
Hi cyphersys,
Please use property "Visible". set it to false will hide the uploader control.
Uploader1.Visible = false;
Regards,
Ken
Hello Kenneth,
I have tried that but when I am using a custom button and I set Visible = false it appear other default upload button generated by Ajax Uploader.
Regards
If you are using custom button as the upload button, then disable the custom button directly, like the example below.
My first option was try to disable the button. But when I set "enabled" false the button and click it, it shows me the open select file modal dialog.
Did you tried the example page I provided? Does it get the same problem too?