Dear deepakkumarjoshi,
Please refer to the following code:
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void Uploader_FileUploaded(object sender, UploaderEventArgs args)
{
//Copys the uploaded file to a new location.
//args.CopyTo("c:\\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>
//this will hide the queue table
<script type='text/javascript'>
function CuteWebUI_AjaxUploader_OnQueueUI(list) {
return false;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div class="content">
Select multiple files in the file browser dialog then upload them at once</p>
<CuteWebUI:UploadAttachments runat="server" ID="Uploader1" InsertText="Upload Multiple Files (Max 10M)"
MultipleFilesUpload="true" OnFileUploaded="Uploader_FileUploaded" ShowProgressBar="False" NumFilesShowQueueUI="9999">
<ValidateOption MaxSizeKB="1024330" />
</CuteWebUI:UploadAttachments>
</div>
</form>
</body>
</html>
Thank you for asking