Search

You searched for the word(s): IE 9 upload
Showing page 15 of 656 (6,557 total posts) < 1 second(s)
  • Re: Redirect the user after the upload passing some variables

    Hi,   When uploader finish uploading files to temp directory , it will fire the JavaScript event OnPostback   You can write function to handle this event :   function CuteWebUI_AjaxUploader_OnPostback() { }   In this function , you can submit a form for redirect at server side , or redirect to another page using ...
    Posted to PHP File Uploader (Forum) by cutechat on October 28, 2009
  • Re: is there a way for preventing the option to cancel upload form appearing?

    Hi jpchatt,   You can only hide the cancel button by javascript. like below   <%@ Page Language=''C#'' %>     <!DOCTYPE html PUBLIC ''-//W3C//DTD XHTML 1.0 Transitional//EN'' ''http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd''> ...
    Posted to Ajax Uploader (Forum) by Kenneth on October 8, 2009
  • Re: Server side validation before upload.

    Hi,   Developer can use client side Javascript and the FileValidating event at the sametime.   If server prepair enough meta data to client side , the invalid item can be cancelled by javascript easily.   And the FileValidating event is just for double check and prevent some hackers skip the javascript ...
    Posted to Ajax Uploader (Forum) by cutechat on September 24, 2009
  • Re: Using AjaxUploader with a DetailsView (upload/insert at same time)

    Hi,   Please check this ...
    Posted to Ajax Uploader (Forum) by cutechat on August 20, 2009
  • Re: Access Denied When Trying To Upload File

    Please try the following code:   <%@ Page language=''c#''%>   <%@ Register Namespace=''CuteWebUI'' Assembly=''CuteWebUI.AjaxUploader'' TagPrefix=''CuteWebUI'' %>   <html>    <head>   </head>   <body> ...
    Posted to Ajax Uploader (Forum) by Adam on June 18, 2009
  • Re: Upload flv error

    For IIS6.0 users, the AspMaxRequestEntityAllowed property specifies the maximum number of bytes allowed in the entity body of an ASP request. If a Content-Length header is present and specifies an amount of data greater than the value of AspMaxRequestEntityAllowed, IIS may return a 403 error response. Please follow the steps below. 1. Stop the ...
    Posted to Cute Editor for ASP (Forum) by Adam on February 24, 2009
  • Re: Anti-Virus upon upload?

    Allen:   You can use the OnFileValidating event to write the custom validation code :   <CuteWebUI:UploadAttachments runat=''server'' ID=''Uploader1'' OnFileValidating=''Uploader1_FileValidating'' />  protected void Uploader1_FileValidating(object sender, UploaderEventArgs args)  {       ...
    Posted to Ajax Uploader (Forum) by cutechat on November 21, 2008
  • Re: Upload folder column in gridview

    mlc962,   You need to use the followng code:   2: Programmatically specify the Document gallery path: C# Example: //use the app-based path Editor1.Setting[''security:FilesGalleryPath'']= ''~/uploads''; //use the absolute path Editor1.Setting[''security:FilesGalleryPath'']= ''/uploads''; //use the physical path ...
    Posted to Cute Editor for .NET (Forum) by Adam on May 20, 2008
  • Re: Upload Events

    dkyle, Please use the following event:   UploaderBase.FileUploaded Event fired when a file are uploaded and validated [Visual Basic] Public Event FileUploaded As UploaderEventHandler [C#] public event UploaderEventHandler FileUploaded; Event Data The event handler receives an argument of type UploaderEventArgs ...
    Posted to Ajax Uploader (Forum) by Adam on May 12, 2008
  • Re: Ajax Uploader and upload to remote dedicated file server ?

    Hi,   please test this :   <CuteWebUI:Uploader runat=server TempDirectory=''\\yourvideoserver\videofolder'' />   and you can try to add such setting into web.config appSettings:   <add key=''CuteWebUI.AjaxUploader.TempDirectory'' value=''\\yourfileserver\tempdirectory'' />   that would affact all ...
    Posted to Ajax Uploader (Forum) by cutechat on April 14, 2008
« First ... < Previous 13 14 15 16 17 Next > ... Last »