New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Validation

Basic Client Side Validation

RadCloudUpload offers an easy way to validate the size and the file type of the uploaded file. To enable it just set MaxFileSize and AllowedFileExtensions. If selected file doesn't pass any of them then OnClientValidationFailed will be fired.#ASPX

<telerik:RadCloudUpload ID="RadCloudUpload2" runat="server" ProviderType="Everlive" OnClientValidationFailed="OnClientValidationFailed" AllowedFileExtensions=".png,.jpg" MaxFileSize="500 kB">
</telerik:RadCloudUpload>
function OnClientValidationFailed(sender, args) {
  var errorMessage = args.get_message();
  var fileName = args.get_filename();
  alert(fileName + ' failed to upload. ' + errorMessage);
}

Validate the Maximum Number of Uploaded Files

<telerik:RadCloudUpload ID="RadCloudUpload2" runat="server" ProviderType="Everlive"
MultipleFileSelection="Automatic" OnClientFileUploading="OnClientFileUploading">
</telerik:RadCloudUpload>
function OnClientFileUploading(sender, args) {
  var filesCount = sender.get_uploadedFiles().length,
  maxFilesCount = 3;

  if (filesCount > maxFilesCount) {
    args.set_cancel(true);
    alert('You cannot select more than: ' + maxFilesCount);
  }
}
In this article