脱机文件查看

时间:2014-03-12 01:07:10

标签: asp.net-mvc pdf model-view-controller offline-caching

我正在为项目和MSSQL数据库后端工作MVC。即使在移动浏览器中也可以在外面查看项目,

这是工作流程,该项目有两个用户" Admin"并且"用户",管理员将上传pdf文件,用户可以查看管理员上传的pdf文件。是否有可能当用户离线或无法访问网络时,他仍然可以查看该页面并可以下载或查看pdf文件。

1 个答案:

答案 0 :(得分:0)

当用户离线时,为了在本地显示这些PDF文件,你可以做一个最简单的事情

1) Store the Files opened today(or in few days) in 'App_Data' folder.

2) Write some process in your server side to check whether the PDF file is present in App_Data or not.

If(File present in App_Data Folder)
{
   //We Can Open that PDF File Locally
}
else
{
   //Stream those PDF Files and store it in App_Data for further use.
}