Hi,
For that you would need to handle the uploader's ClientSideOnProgress event:
http://www.essentialobjects.com/ViewDoc.aspx?t=EO.Web.AJAXUploader.ClientSideOnProgress.htmlhttp://www.essentialobjects.com/ViewDoc.aspx?t=JSDoc.Public.Handlers.uploader_progress_handler.htmlIt will be something like this:
Code: HTML/ASPX
<eo:AJAXUploader ClientSideOnProgress="on_progress" ....>
.....
</eo:AJAXUploader>
Code: JavaScript
function on_progress(uploader, total, received)
{
if ((total < 0) || (received < 0))
return;
//You would then update the progress information in whatever
//logic you would like. For example:
var div = document.getElementById("progress_div");
div.innerHTML = "uploaded " +
Math.round(received / 1024 / 1024).toString() + "MB";
}
The above code assume you have an DIV element with ID "progress_div" in your page. When the uploader runs, it will call your on_progress handler, which then update the innerHTML of a DIV element you put in your page.
Thanks