It looks like you're new here. If you want to get involved, click one of these buttons!
$('#file_upload').uploadify({
'uploader': '/js_scripts/Uploadify/uploadify.swf',
'cancelImg': '/js_scripts/Uploadify/cancel.png',
'script': '/Handlers/Upload.ashx',
'fileExt': '*.jpeg;*.jpg;*.gif;*.png;*.bmp;',
'scriptData': {
'type': 'Offerte',
'ASPSESSID': '<%=Session.SessionID %>',
'AUTHID': '<%=AuthCookie %>'
},
'buttonText': 'Selecteer bestand',
'fileDesc': 'Image Files',
<strong>'queueID': 'queue2'</strong>,
'displayData': 'speed',
'sizeLimit': 20971520,
'auto': false,
});
$("SomeDiv").block({
message: $('#BlockUI_container'), css: { width: '370px', height: '100px' },
onBlock : function () { $('#file_upload').uploadifyUpload(); }
});