Re: unable to copy to another folder at same level in the website as uploadertemp folder

  •  11-22-2008, 1:55 PM

    Re: unable to copy to another folder at same level in the website as uploadertemp folder

    I think I just found the answer in this post:
    private void Uploader1_FileUploaded(object sender, UploaderEventArgs args)
    {
          string folder=Server.MapPath("~/UploadFiles/");
          string mypath=Path.Combine(folder,args.FileName);
          args.MoveTo(mypath);
    }
View Complete Thread