我想在asp表链接到文件中添加表格单元格,它位于应用程序文件夹中,是一个word文档(.docx)。我如何在此处添加此链接?
...
<asp:TableRow>
<asp:TableCell> here I want to add link to file in application folder Content/Files/document.docx </asp:TableCell>
</asp:TableRow>
THX。
答案 0 :(得分:1)
使用链接元素怎么样? <a href="Content/Files/document.docx">document</a>
。
如果无法直接访问app文件夹,则必须创建处理程序以提供此文件的内容,并使用Server.MapPath方法正确定位文件:
Server.MapPath("~/Content/Files/document.docx")