Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: unable to copy to another folder at same level in the website as uploadertemp folder
Re: unable to copy to another folder at same level in the website as uploadertemp folder
11-22-2008, 1:55 PM
jmestep
Joined on 11-12-2008
Posts 14
Re: unable to copy to another folder at same level in the website as uploadertemp folder
Reply
Quote
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