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

2023-05-16,,

页面调用

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();

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

c# 从一个服务器 访问另外一个服务器上的文件的相关教程结束。

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

下载本文的Word格式文档,以方便收藏与打印。