-1

我有一个gridview,在这个gridview 中有一列“文件名”,其中包含文件名。要求:当我点击特定的文件名时,我应该能够看到文件的内容并能够保存或下载该文件。

所有方法都非常受欢迎。

_________________________________________
|                        |**file name** |
_________________________________________
|                        | a.txt        | <<----Click a.txt    
_________________________________________
|                        | b.txt        |
_________________________________________

问候, 维维克

4

2 回答 2

0

有一个链接按钮或按钮来显示文件名。放置一个带有 runat="server" 的 div 以显示文件内容。

处理文件名按钮单击事件。在这种情况下,读取文件内容并将其设置为 div 的 InnerHTML。

以上用于显示 text/html 内容。

于 2013-09-23T06:09:02.977 回答
0

你可以尝试这样的事情,打开新的 popup.aspx 页面,文件名作为查询参数。在新的弹出页面page_load中,读取内容并写入浏览器

<asp:GridView ID="FilterGrid" runat="server" AutoGenerateColumns="False" >
    <Columns>
        <asp:TemplateField HeaderText="FileName" >
            <ItemTemplate>
               <asp:HyperLink ID="ActionHyperLink" runat="server" Text='<%# Eval("FileName") %>' NavigateUrl='<%# Eval("FileName","~/FilePopUp.aspx?filename={0}") %>' Target="_blank" />
               <asp:HyperLink ID="HyperLink2" runat="server" Text='<%# Eval("FileName") %>' NavigateUrl='<%# String.Format("filepopup.aspx?filename={0}", Eval("filename")) %>' onclick="javascript:w= window.open(this.href,'DownloadFile','left=20,top=20,width=500,height=500,toolbar=0,resizable=0');return false;"></asp:HyperLink>
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>

弹出页面的加载量

protected void Page_Load(object sender, EventArgs e)
{
            if (Request.QueryString["filename"] != null)
            {
                //Get the content from database
                byte[] fileContent = ....;
                Response.Clear();
                string doctype = ...;
                if (doctype == ".doc")
                {
                    Response.ContentType = "application/msword";
                }
                else if (doctype == ".pdf")
                {
                    Response.ContentType = "application/pdf";
                }
                else if (doctype == ".xls")
                {
                    Response.ContentType = "application/vnd.ms-excel";
                }
                else if (doctype == ".xlsx")
                {
                    Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
                }
                Response.BinaryWrite(fileContent);
            }
}
于 2013-09-23T06:15:38.917 回答