I'm having an issue with the Upload control. If I attempt to upload a file that is too big, it shows the appropriate client-side error and doesn't allow the user to upload; however, if I then select a valid file and click upload, the Progress Bar dialog pops up and the progress bar does not move.
A few seconds later, the page redirects back to itself with "?CartUploadId=" in the querystring, and the page is blank.
For my client-side UploadError method, I'm using the following:
function upload_error(sender, args)
{
UploadDialog.close();
alert("An error has occured during upload: " + args.get_message());
}