61,826
社区成员




string fullFileName = this.FileUpload1.PostedFile.FileName;
string fileName = fullFileName.Substring(fullFileName.LastIndexOf("\\") + 1);
if (!string.IsNullOrEmpty(fullFileName))
{
this.FileUpload1.PostedFile.SaveAs(Server.MapPath("../Doc/" + ID) + "\\" + fileName);
}