我需要打开一些类型的文件,如.jpg,word,.pdf 当用户点击gridview中的链接时。现在我正在使用 这段代码并没有开放。
这是一个Web应用程序,我必须打开存在的文件 在用户的本地驱动器中。我将绑定NavigateUrl属性中的文件路径 超链接
<asp:hyperlink ID="HyplnkName" runat="server" NavigateUrl= '<%# ConfigurationManager.AppSettings["ImagesFilePath"]) %>' Target="_top" Text='<%# DataBinder.Eval(Container, "DataItem.FileName") %>' />
答案 0 :(得分:0)
以下是我在项目中使用的内容
<asp:HyperLink ID="hlPdf" runat="server" NavigateUrl="~/PdfHandler.ashx"
Target="_blank">Click to view PDF</asp:HyperLink>
这是ashx处理程序文件
using System;
using System.Web;
using System.IO;
public class PdfHandler : IHttpHandler
{
public void ProcessRequest (HttpContext context)
{
byte[] data = File.ReadAllBytes(@"Your Path");
context.Response.ContentType = "application/pdf";
context.Response.OutputStream.Write(data, 0, data.Length);
}
public bool IsReusable {
get {
return false;
}
}
}
答案 1 :(得分:0)
改为使用OnRowDataBound:
aspx页面:
<asp:GridView ID="GridView1" runat="server"
onrowdatabound="GridView1_RowDataBound">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:HyperLink ID="HL" runat="server" Target ="_blank"></asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
代码背后的代码:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
HyperLink hlink = (HyperLink)e.Row.FindControl("HL");
string url = "~/Docs/" + e.Row.Cells[1].Text;
hlink.NavigateUrl = url;
hlink.Text = "Read";
}
}