max size

Last post 10-15-2009, 9:43 AM by Eric. 1 replies.
Sort Posts: Previous Next
  •  10-14-2009, 3:22 AM 56385

    max size

    ive set the max size to 10MB but it does not allow files even only up to 9.6MB to be uploaded. i've set a temporary value on the max size so as to allow uploading of files up to 10MB. is this a bug on control or do i need to set a certain value on the maxsizekb property to allow uploading up to 10MB?
  •  10-15-2009, 9:43 AM 56422 in reply to 56385

    Re: max size

    racha3l ,
     
    Please try the following two examples and get back to me.
     First:
     
    <%@ Page language="c#"%>
    <%@ Register Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" TagPrefix="CuteWebUI" %>
    <html>
    <head>
    </head>
    <body>
        <form id="Form1" method="post" runat="server">
     <CuteWebUI:Uploader runat="server" ID="Uploader1">
     </CuteWebUI:Uploader> 
        </form>
    </body>
    </html>
     
     
     
    Second:
    <%@ Page language="c#"%>
    <%@ Register Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" TagPrefix="CuteWebUI" %>
    <html>
    <head>
    </head>
    <body>
        <form id="Form1" method="post" runat="server">
     <CuteWebUI:Uploader runat="server" ID="Uploader1">
          <ValidateOption MaxSizeKB="10240" />
     </CuteWebUI:Uploader> 
        </form>
    </body>
    </html>
     

View as RSS news feed in XML