摘要:
public void DownLoadMethod(string FilePath) { string hzm = Path.GetExtension(FilePath).ToLower(); string FileName = Path.GetFileNameWithoutExtension(FilePath); string Name = FileName + hzm; if (hzm.ToLower() == ".pdf") { Response.ContentType = "application/pdf"; Response.AppendHe 阅读全文