Hi, I can't find any documentation to resize files before uploading in ASP.NET, I need help on this... Thanks...

-------
IT'S WORKING!!!

Just changed in handlers.js ----> this.startUpload(); to:

this.startResizedUpload(this.getFile(0).ID, this.customSettings.thumbnail_width, this.customSettings.thumbnail_height, SWFUpload.RESIZE_ENCODING.JPEG, this.customSettings.thumbnail_quality, false);

in these functions filedialogcomplete and uploadcomplete

AND in the aspx page calling the upload added this lines:

custom_settings : {
upload_target: "divFileProgressContainer",
thumbnail_height: 50,
thumbnail_width: 50,
thumbnail_quality: 100
},