111,130
社区成员
发帖
与我相关
我的任务
分享string fullname=@"\\192.168.1.252\HK-kiki\2008年\11月走货\3328.pdf";
string strDesk=@"C:\tmpp.pdf";
if(System.IO.File.Exists(strDesk)==true)
{
System.IO.File.Delete(strDesk);
}
System.IO.File.Copy(fullname,strDesk);
System.Diagnostics.Process.Start(fullname); Response.ContentType = "Application/pdf";
Response.WriteFile(fullname);
Response.End();