Hello,
Could somebody help me ? What I have been trying to do is to show our users not just file name, but also file size information (ContentLength), when file is selected and uploaded...
It seems that from server side method there are just readonly properties about uploaded files. For example e.File.ContentLength (15423 bytes), etc...
Because of this, I suppose, that it should be done from client side, but I don't know how.
For further information, please check the attachment.
Please help me to solve this issue.
Best regards
Vasssek
Could somebody help me ? What I have been trying to do is to show our users not just file name, but also file size information (ContentLength), when file is selected and uploaded...
It seems that from server side method there are just readonly properties about uploaded files. For example e.File.ContentLength (15423 bytes), etc...
protected void fileUploaded(object sender, FileUploadedEventArgs e)
{
if (RadAsyncUpload1.UploadedFiles.Count > 0)
{
}
}
Because of this, I suppose, that it should be done from client side, but I don't know how.
For further information, please check the attachment.
Please help me to solve this issue.
Best regards
Vasssek