Hi,
I detect an issue inside the AsyncFileUpload component when I use it inside a repater.
The issue is in the ReceivedFile function.
```
foreach (string uploadedFile in this.Page.Request.Files)
{
string fileToUse = uploadedFile;
if (fileToUse.EndsWith(straggler))
{
fileToUse = fileToUse.Remove(fileToUse.Length - straggler.Length);
}
if (fileToUse.Replace("$", "_").EndsWith(sendingControlID))
{
file = this.Page.Request.Files[uploadedFile];
break;
}
}
```
This part of code don't work because it don't take the id generated by the repeater
I propose this solution :
```
if (this.Page.Request.Files.AllKeys.Contains(UniqueID + straggler))
file = this.Page.Request.Files[UniqueID + straggler];
```
I had this before the foreach and it's works.
I think the foreach can be replace by this short code but I am not sure.
What do you think ?
I detect an issue inside the AsyncFileUpload component when I use it inside a repater.
The issue is in the ReceivedFile function.
```
foreach (string uploadedFile in this.Page.Request.Files)
{
string fileToUse = uploadedFile;
if (fileToUse.EndsWith(straggler))
{
fileToUse = fileToUse.Remove(fileToUse.Length - straggler.Length);
}
if (fileToUse.Replace("$", "_").EndsWith(sendingControlID))
{
file = this.Page.Request.Files[uploadedFile];
break;
}
}
```
This part of code don't work because it don't take the id generated by the repeater
I propose this solution :
```
if (this.Page.Request.Files.AllKeys.Contains(UniqueID + straggler))
file = this.Page.Request.Files[UniqueID + straggler];
```
I had this before the foreach and it's works.
I think the foreach can be replace by this short code but I am not sure.
What do you think ?