Following is my code,
string path1 = string.Format("{0}/{1}", Server.MapPath("~/Content/UploadedFolder"), Request.Files
["FileUpload1"].FileName);
if (System.IO.File.Exists(path1))
System.IO.File.Delete(path1);
Request.Files["FileUpload1"].SaveAs(path1);
I'm getting error saying 'The given path's format is not supported'.What will be the issue?
firstly what u have passed to "FileUpload1"
and y cant u try this