0
以下是我的代碼,給定的路徑的格式不supported.SaveAs
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);
我收到提示說「給定的路徑的格式不supported'.What將成爲問題?