Here is my code. I am getting a yellow icon on the upload control and it is not uploading.
HTML
telerik:RadCloudUpload ID="CloudUpload" runat="server" MultipleFileSelection="Automatic" HttpHandlerUrl="~/UploadToCustomFolderHandler.ashx"
OnClientFileSelected="onClientFileSelected" OnFileUploaded="CloudUpload_FileUploaded" AllowedFileExtensions="xlsx,xls,doc,pdf,docx,png,tiff" ProviderType="Azure">
</telerik:RadCloudUpload>
JS
function onClientFileSelected(sender, args) {
var UBID = document.getElementById('<%= hfUBID %>').value
sender._module._handlerUrl = "/UploadToCustomFolderHandler.ashx?UBID=" + UBID;
}
It never gets to the HttpHandlerUrl as I have a break point set if it does.
Here is the code in the handler that is not getting data.
string ubid = HttpContext.Current.Request["UBID"];