Re: Upload Button Not working in firefox 2.0

  •  12-26-2008, 12:30 AM

    Re: Upload Button Not working in firefox 2.0

    Hi,
     
    Can you test this online sample http://ajaxuploader.com/demo/fulltest.aspx ?
     
    The uploader would added .resx to prevent the file be downloaded or executed by implicit permissions.
     
    When you use the Uploader , you need use the properties/methods of the UploaderEventArgs (FileName/CopyTo etc..) to process the uploaded data. for example:
     
     void Uploader_FileUploaded(object sender, UploaderEventArgs args)
     {
      string folder = Server.MapPath("~/MyFiles");
      string savepath = System.IO.Path.Combine(folder, args.FileName);
      args.MoveTo(savepath);
     }
     
    Regards,
    Terry
View Complete Thread