Hello,
I'm from Brazil and I'm testing Ajax Uploader.
I want a event to call a client-side function after file upload, something like this:
<CuteWebUI:Uploader runat="server" ID="MyUploader"
OnUploadedClient="MyUploader_UploadedClient"></CuteWebUI:Uploader>
<script type="text/javascript">
funcion MyUploader_UploadedClient(uploaddetails)
{
alert(uploaddetails.Name);
}
</script>
Today I can do something like that?
If I don't, are you intend do it?
This is to create uploaded images on client-side without need uploadpanel from M$ Ajax, is better because in my need I just want to create 1 image on screen and my list of images is large like 50 images on a grid, if I put a update panel, i need put it at entire grid and the process will be slow.
Thank you,