hi ,
i m using RadAsyncUpload in my form. it use for ,ultifile upload. my requirement is if when file upload that time file is store in my project folder . and every file will rename by guid so.. my code is in codebehind. but it gives error every time like following.
Could not find file App_Data\RadUploadTemp\
xrdglyzs.lrr'.
here in error bold portion is always different. and my application quit
and my code is following..
foreach (UploadedFile f in RadUploadlesson.UploadedFiles)
{
f.SaveAs(Server.MapPath("~/AssignmentDocs/") + objlessonplanDoc.InternalDocumentName, true);
}
but it always fail
so.. please help me.