Thank You for the quick reply. :)
I am using the most recent version of the uploader. I have also set the Temporary File Location as well.
From web.config in my application
- <configuration>
- ...
- <appSettings>
- <add key="CuteWebUI.AjaxUploader.TempDirectory" value="E:\UploaderTemp" />
- <add key="CuteWebUI.AjaxUploader.GlobalMaxSizeKB" value="2306867" />
- </appSettings>
- ...
- <system.web>
- <httpRuntime executionTimeout="1255654" maxRequestLength="2306867" />
- <httpModules>
- <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
- ...
- </httpModules>
- ...
- </system.web>
- </configuration>
And from my upload file ...
- <asp:UpdatePanel ID="UpdatePanel1" runat="server">
- <ContentTemplate>
- <br />
- <asp:Button ID="btnSelectFiles" runat="server" Text="Select file(s) - Max 2GB"/>
- <cc1:UploadAttachments MultipleFilesUpload="true" ShowRemoveButtons="false" ShowCheckBoxes="false" RemoveButtonBehavior="None" ValidateOption-AllowedFileExtensions="gho,ghs" ManualStartUpload="true" InsertText="Select file(s) - Max 2GB" ID="Uploader1" runat="server" InsertButtonID="btnSelectFiles" >
- <VALIDATEOPTION MaxSizeKB="2306867">
- </cc1:UploadAttachments>
- </ContentTemplate>
- </asp:UpdatePanel>
**EDIT** Sorry, cc1 is the tag prefix I gave to the assembly
- <%@ Register assembly="CuteWebUI.AjaxUploader" namespace="CuteWebUI" tagprefix="cc1" %>
Thanks Again,
W. Andrew Shogren