It looks like you're new here. If you want to get involved, click one of these buttons!
$('#file_upload').uploadify({
'swf': '/Scripts/Uploadify/uploadify.swf',
'formData': { 'jobbieid': 1, 'clientid': 1, 'comment': 'bar' },
'uploader': '/Scripts/Uploadify/uploadify.ashx',
'onUploadStart': function (file) {
$("#file_upload").uploadify("settings", "comment", "foo");
},
'onUploadSuccess': function (file, data, response) {
alert('The file ' + file.name + ' was successfully uploaded with a response of ' + response + ':' + data);
}
});