上传PDF文件并在ASP.net MVC3中预览上传的文件

发布于 2025-01-06 07:23:47 字数 176 浏览 0 评论 0原文

我是 ASP.net MVC3 应用程序的新手。 我正在做这个项目,我必须处理 PDF 文件。 我必须能够将 PDF 文件上传到我的文件服务器,并且文件上传后,用户必须能够在同一页面上看到上传文档的预览。 预览必须加载到某些 DIV 或部分视图中。 我花了很多时间进行研究,但仍然无法得到我需要的东西。 如果有人可以帮助我,我将非常感激。

i am a newbie in ASP.net MVC3 application.
I am working on this project where i have to work with PDF files.
I must be able to upload the PDF files to my file server and as soon as the file is uploaded the user must be able to see the preview of the uploaded document on the same page.
the Preview must be loaded in some DIV or partial view.
I have been spending a lot of time in research but still could not get what i need.
If anyone can help m with this i'll be very grateful.

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

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

发布评论

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

评论(1

玉环 2025-01-13 07:23:47
public class FileUploadController[HttpPost]{

public ActionResult UploadFile(HttpPostedFileBase uploadFile){
        //Save file to server

    return new FileContentResult(fileContents, contentType);

}
}

 @using (Html.BeginForm("UploadFile", "FileUpload", FormMethod.Post, new { enctype = "multipart/form-data" })){
          <input type="file" name="uploadFile" id="uploadFile" />
                <input type="submit" name="FileUpload" value="Upload" id="FileUpload"/>
   }
public class FileUploadController[HttpPost]{

public ActionResult UploadFile(HttpPostedFileBase uploadFile){
        //Save file to server

    return new FileContentResult(fileContents, contentType);

}
}

 @using (Html.BeginForm("UploadFile", "FileUpload", FormMethod.Post, new { enctype = "multipart/form-data" })){
          <input type="file" name="uploadFile" id="uploadFile" />
                <input type="submit" name="FileUpload" value="Upload" id="FileUpload"/>
   }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文