Hi smcleod,
Please add the javascript code below to your page and test again
- function CuteWebUI_AjaxUploader_OnSelect(files)
- {
- if(files.length>1)
- {
- alert("you can only select one file");
- return false;
- }
- return true;
- }
If you want to limit the file count, you can use a client tag such as input to mark the total selected files
if the count is greater than the number you defined,
please return false
Regards,
Jeff