1

我有一个带有在线文件​​库的客户。她希望能够在表单库“ReadOnly”中制作她的一些文件。

现在,当您查看文件库页面时,所有文件都会显示。

当您单击一个文件时,它会打开标准浏览器窗口并询问您是否要打开或下载该文件。基本上她想限制一些文件只允许你打开而不是下载文件。

我很确定这是不可能的,因为这是一种用户偏好浏览器设置类型的东西,但我想在告诉她知道之前我会得到一些输入。

现在我正在使用我编写的名为文件处理程序的 asp.net HTTP 处理程序。

    public void ProcessRequest(HttpContext context)
    {
        if (this.FileName != null)
        {
            string path = String.Concat(ConfigurationManager.UploadsDirectory, this.FileName);
            string contentType = Utility.IO.File.GetContentType(this.FileName);

            if (File.Exists(path) == true)
            {
                context.Response.Buffer = true;
                context.Response.Clear();
                context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
                context.Response.ContentType = contentType;
                context.Response.AddHeader("content-disposition", String.Format("inline; filename={0}", (Url.Encode(this.DisplayFileName))));
                context.Response.TransmitFile(path);
                context.Response.Flush(); 
                context.Response.End();
            }
            else
            {
                throw new HttpException(404, "File Not Found");
            }
        }
    }

这个函数(Utility.IO.File.GetContentType)是一个简单的实用函数,我用来根据文件扩展名获取内容类型。

无论如何,我可以在此代码中更改任何内容以使其文件为只读或“仅查看”。也许我可以添加某种类型的标题?

4

1 回答 1

0

回答我自己的问题。这是不可能的。

于 2019-04-05T21:50:04.237 回答