I'm trying to get a return using the date object. But I can not and console.log of firebug I see the value you want to use.
I tried to show my image in question

I need to get the value returned in the data object Name
my code (js)
$(function () {
//'use strict';
$('#fileupload').fileupload({
url: '/resource/upfoto2.ashx',
maxNumberOfFiles: 1,
dataType: 'json',
done: function (e, data) {
$.each(data.result.files, function (index, file) {
$('<p/>').text(file.name).appendTo('#files');
});
},
progressall: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
$('#progress .progress-bar').css(
'width',
progress + '%'
);
}
}).bind('fileuploadadd', function (e, data) { $("#progress").show(); })//2
.bind('fileuploadsubmit', function (e, data) { })//3
.bind('fileuploadsend', function (e, data) { })//5
.bind('fileuploaddone', function (e, data) { })//8
.bind('fileuploadfail', function (e, data) { })
.bind('fileuploadalways', function (e, data) { })//9
.bind('fileuploadprogress', function (e, data) {
console.log(data);
})//6
.bind('fileuploadprogressall', function (e, data) { })//7
.bind('fileuploadstart', function (e) {
})//4
.bind('fileuploadstop', function (e, data) {
$("#boxCrop").load("/resource/crop.html?r="+Math.random(2));
})//10 - chama ao terminar de fazer o upload da FOTO
.bind('fileuploadchange', function (e, data) { })//1
.bind('fileuploadpaste', function (e, data) { })
.bind('fileuploaddrop', function (e, data) { })
.bind('fileuploaddragover', function (e) { })
.bind('fileuploadchunksend', function (e, data) { })
.bind('fileuploadchunkdone', function (e, data) { })
.bind('fileuploadchunkfail', function (e, data) { })
.bind('fileuploadchunkalways', function (e, data) { }).prop('disabled', !$.support.fileInput).parent().addClass($.support.fileInput ? undefined : 'disabled');
});