c# 从一个服务器 访问另外一个服务器上的文件


页面调用 

function fnOpen(path) {
window.open("~/FileHelp.ashx? url=");
//window.open(url);
}

 

后台一般处理程序  

var myWebClient = new WebClient();
var url = context.Request["url"];
var cread = new NetworkCredential("账号", "密码", "domain");
myWebClient.Credentials = cread;
var fs = new FileStream(@"", FileMode.Open, FileAccess.Read);

byte[] bytes = new byte[(int)fs.Length];
fs.Read(bytes, 0, bytes.Length);
context.Response.ContentType = "application/octet-stream";
//通知浏览器下载文件而不是打开
context.Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode("sf.jpg", System.Text.Encoding.UTF8));
context.Response.BinaryWrite(bytes);
context.Response.Flush();

 

 

  • 首先我们要在服务器本地上访问到 对应的文件夹,否则 你怎么做 都是无效的

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM