Dear bvanderwal,
I have used the following code and test this issue:
<%@ Page Language="C#" %>
<script runat="server">
void InsertMsg(string msg)
{
ListBoxEvents.Items.Insert(0, msg);
ListBoxEvents.SelectedIndex = 0;
}
void Uploader_FileUploaded(object sender, UploaderEventArgs args)
{
InsertMsg("File uploaded! " + args.FileName + ", " + args.FileSize + " bytes.");
//Copys the uploaded file to a new location.
args.CopyTo("e:\\temp\\"+args.FileName);
//You can also open the uploaded file's data stream.
//System.IO.Stream data = args.OpenStream();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Selecting multiple files for upload</title>
<link rel="stylesheet" href="demo.css" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div class="content">
<h2>
Selecting multiple files for upload</h2>
<p>
Select multiple files in the file browser dialog then upload them at once</p>
<CuteWebUI:Uploader runat="server" ID="Uploader1" InsertText="Upload Multiple Files (Max 10M)"
MultipleFilesUpload="true" OnFileUploaded="Uploader_FileUploaded">
<ValidateOption MaxSizeKB="1033333240" />
</CuteWebUI:Uploader>
<br />
<br />
<div>
Server Trace:
<br />
<asp:ListBox runat="server" ID="ListBoxEvents" Width="400"></asp:ListBox>
</div>
</div>
</form>
</body>
</html>
All uploaded files will not be changed, the size keep same. I advise you upgrade to latest version and check it again. The download url of latest version is:
Thanks for asking