使用asp.net mvc2创建一个链接以在navigateur中打开pdf

发布于 2024-11-30 01:13:58 字数 86 浏览 0 评论 0原文

我使用asp.net mvc2(c Sharp)工作一个项目。我想创建一个链接来在navigateur(我的数据库中pdf exixte的路径)中打开pdf。

I work a project with asp.net mvc2 (c sharp ).I want to create a link to open a pdf in the navigateur, the path of the pdf exixte in my data base .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花细雨 2024-12-07 01:13:58

您可以设计一个控制器操作,该操作将从数据库中获取 pdf 路径并将其流式传输到响应:

public ActionResult ShowPdf()
{
    string path = ... fetch path from database
    if (!System.IO.File.Exists(path))
    {
        // the file was not found
        throw new HttpException(404, "Not found");
    }
    return File(path, "application/pdf", "test.pdf");
}

然后您可以在视图中创建指向此操作的链接:

<%= Html.ActionLink("download pdf", "showpdf", "somecontroller") %>

You could design a controller action which will fetch the pdf path from the database and stream it to the response:

public ActionResult ShowPdf()
{
    string path = ... fetch path from database
    if (!System.IO.File.Exists(path))
    {
        // the file was not found
        throw new HttpException(404, "Not found");
    }
    return File(path, "application/pdf", "test.pdf");
}

and then you could create a link to this action in your view:

<%= Html.ActionLink("download pdf", "showpdf", "somecontroller") %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文