Search

You searched for the word(s): uploader
Showing page 9 of 328 (3,276 total posts) < 1 second(s)
  • Re: Guidance needed - not sure which uploader type to use!

    Hi Tawl, I suggest you use the UploadAttachments control, it allow to get all upload files back by porperty ''Items''. <%@ Page Language=''C#'' %> <%@ Register TagPrefix=''CuteWebUI'' Namespace=''CuteWebUI'' Assembly=''CuteWebUI.AjaxUploader'' %> <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Transitional//EN'' ...
    Posted to Ajax Uploader (Forum) by Kenneth on December 19, 2011
  • Re: Which Ajax Uploader license to buy ?

    Hi there, A Domain license allows the control to run on 1 domain/subdomain name, ie http://news.domain.com or http://intranet or http://192.168.0.1 A Small Business License allows 10 such names An IP license enables all the domains/subdomains hosted on this IP@ to use the control. All license options are good for http://localhost. I'd highly ...
    Posted to ASP Uploader (Forum) by Karen on October 13, 2011
  • Re: Upload to virtual directory?

    Hi GenNS, Yes, this can be implemented.You can follow steps:1. Open IIS2. Navigate to the site which contains the ASP Uploader3. Create one virtual directory ''savefoldervirdir'' and let it point to the destination folder4. Save the following code to test.asp:<%@ Language=''VBScript'' %> <!-- #include ...
    Posted to ASP Uploader (Forum) by Eric on June 28, 2011
  • Re: The original name of the uploaded file

    Dear illaki,   Please test the following snippet, it returns the original file name:   <%@ Language=''VBScript'' %> <!-- #include file=''aspuploader/include_aspuploader.asp'' --> <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Strict//EN'' ''http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd''> <html ...
    Posted to ASP Uploader (Forum) by Eric on June 1, 2011
  • Re: Email notifications?

    Dear seattletype,   Please add the email notification code to the following highlighted place: <%@ Language=''VBScript'' %> <!-- #include file=''aspuploader/include_aspuploader.asp'' --> <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Strict//EN'' ''http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd''> <html ...
    Posted to ASP Uploader (Forum) by Eric on February 16, 2011
  • Re: Uploading / renaming files using Ajax - Newbie question

    Hi Edd, Please try the example below, it shows you how to add the timestamp into the file name. Note: need to change the path ''C:\inetpub\wwwroot\aspuploader\uploads\ '' to ...
    Posted to ASP Uploader (Forum) by Kenneth on November 3, 2010
  • Re: Need advice with PHP File Uploader "Task Complete" on Multiple File Upload

    Dear techtoad,   Please change  <script type='text/javascript'>     function CuteWebUI_AjaxUploader_OnTaskComplete(task)     {         window.location = ''/complete?id=<?=$sessionkey;?>&deletekey=<?=$deletekey;?>'';     }    ...
    Posted to PHP File Uploader (Forum) by Eric on October 27, 2010
  • Re: Clear Uploader Files On Error

    You can use OnError event to hide the default error message alert box.   function CuteWebUI_AjaxUploader_OnError(msg) {       return false; } The following is one runnable example: <%@ Page Language=''C#'' %> <%@ Register TagPrefix=''CuteWebUI'' Namespace=''CuteWebUI'' ...
    Posted to Ajax Uploader (Forum) by Eric on August 23, 2010
  • Re: Where'd the files go?

    Okay, I'm sorta getting it to work with this code but it's not uploading it directly to the  files  folder and it appears that the system temp folder gets cleaned out fast so only the smallest of files get uploaded and moved.  <?php require_once ''phpuploader/include_phpuploader.php'' ?> <html> <body> ...
    Posted to PHP File Uploader (Forum) by Confuzed on February 4, 2010
  • Re: AJAX Uploader - uploading file to different folders

    Yes, you need to use .CopyTo method to copy the uploaded files to the target location.  For your situations, you can copy the files to different folder based on the user information.   void Uploader_FileUploaded(object sender, UploaderEventArgs args)          { ...
    Posted to Ajax Uploader (Forum) by Adam on September 9, 2009
« First ... < Previous 7 8 9 10 11 Next > ... Last »