我在服务器上有一个网站。它有一个按钮,可以触发从该服务器下载文件(.zip/.doc)。但它并不指向该文件夹/文件。这个问题怎么解决??
它在这个特定文件上失败了......
public static bool ResponseFile(HttpRequest _Request, HttpResponse _Response, string _fileName, string _fullPath, long _speed){
FileStream myFile = new FileStream(_fullPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
}