On "Select Files", the list of selected files to be uploaded, always displays file size as "20 bytes".
Correction Requred:
File: [Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Item.pre.js](https://ajaxcontroltoolkit.codeplex.com/SourceControl/latest#Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Item.pre.js)
```
initUI: function (onRemoveItem) {
var self = this, file = this._inputElementValue,
```
Change to
```
initUI: function (onRemoveItem) {
var self = this, file = (this._inputElementValue.files) ? this._inputElementValue.files[0] : this._inputElementValue,
```
There may be many aspects affected, but change is required as the "files" array has the selected file information correct.
Correction Requred:
File: [Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Item.pre.js](https://ajaxcontroltoolkit.codeplex.com/SourceControl/latest#Server/AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.Item.pre.js)
```
initUI: function (onRemoveItem) {
var self = this, file = this._inputElementValue,
```
Change to
```
initUI: function (onRemoveItem) {
var self = this, file = (this._inputElementValue.files) ? this._inputElementValue.files[0] : this._inputElementValue,
```
There may be many aspects affected, but change is required as the "files" array has the selected file information correct.