Search

You searched for the word(s): IE 9 upload
Showing page 128 of 656 (6,557 total posts) < 1 second(s)
  • Re: Using DotNetZip to compress file during upload

    Maybe if I re-phrased this, it would help. What is the best way to intercept the file? As it is being uploaded? After it is uploaded and when it is being copied with it's new name to the permanent folder? I don't want to do anything that will keep the upload from being written to the hard drive and make it eat up computer memory and I'm not ...
    Posted to Ajax Uploader (Forum) by jmestep on December 12, 2008
  • Re: Error message on file upload completion

    Hi Adam,   The file is 50MB, MegaBytes, in size. so not that small.   It also happens on a 12MB file and a 409MB file, although on the larger file the message appeared at 26% rather than 100% which is when the message appears for the smaller files.
    Posted to Ajax Uploader (Forum) by AtomP on February 11, 2013
  • Re: setting maximum amount of KBytes for Upload

    I'd like to have functionallity to add, delete and rename folders! And the MaxImageGalleryPathSize property should count all sub-dirs.   How about a property MaxAllPathSize, that allows us to restrict the total size for all upolads (images, documents, flash and media) using one parameter?    -Zapotec
    Posted to Cute Editor for .NET (Forum) by Zapotec on August 26, 2004
  • Re: Refresh after upload

    I've found !!!!!!!!!!!!!!!!!!!!!!! Need to be at start of page, if i come from a post method on a form, page is refreshed :) <?php if($_SERVER['REQUEST_METHOD'] == 'POST') {     header('location:'.$_SERVER['PHP_SELF']); } ?> Thanks to me :)   
    Posted to PHP File Uploader (Forum) by Pachanka on July 20, 2010
  • Re: Changing filename....

    Hi,   Please check the example page below, it shows you how to change the upload file name with method CopyTo(). mvcfile.FileName means use the original file name, if you want to change to other name, then just change there ...
    Posted to ASP Uploader (Forum) by Kenneth on September 22, 2016
  • Re: Block Filenames with Special Characters?

    Hi,   you can use the api below to check the upload file name before upload and block it there.   //Fires when files are selected. function CuteWebUI_AjaxUploader_OnSelect(files) {     //change the files array would take no effect.     var name=files[0].FileName;     var size=files[0].FileSize // ...
    Posted to Ajax Uploader (Forum) by Kenneth on June 21, 2016
  • Re: Saving filename with GUID

    Hi serran,   I suggest you use method "CopyTo" to handle the upload file store location and the new file name. Then you can save it to any folder and use any name you need. The example below shows you how to achieve it.   mvcfile.FileName is the original file name, you can change it directly. Like ...
    Posted to ASP Uploader (Forum) by Kenneth on August 28, 2013
  • Re: How to delete an uploaded file

    Hi ttyrone,   Please try the example page below, first check if the upload file exists in the store folder, then delete it by the c# ...
    Posted to Ajax Uploader (Forum) by Kenneth on August 6, 2013
  • Re: AttachmentTRStyle

    Hi GeraldMorris,   This property use to set the attachment table style after uploaded. If you want to change the style of the queue table when uploading, then you need to write your own queue table like the example below.   More details please refer to ...
    Posted to Ajax Uploader (Forum) by Kenneth on June 26, 2013
  • Re: How to change the file extentions allowed?

    Hi aviweiss,   You can ctach the error and show you own error message.   How to catch file upload error?To catch uploader error, you need to use CuteWebUI_AjaxUploader_OnTaskError or CuteWebUI_AjaxUploader_OnError event. Example: <%@ Page Language="C#" %> <%@ Register TagPrefix="CuteWebUI" ...
    Posted to Ajax Uploader (Forum) by Kenneth on May 10, 2013