IIS 权限访问 App_Data 文件夹以读取/写入数据库
IIS 7.0 ( Windows 2003 Server )
我在 IIS 上部署了 ASP.Net ( VS 2008 ) 应用程序。应用程序正在尝试读取 MS Access DB,删除现有表,然后再次将数据重新提取到 MS Access DB。
阅读&写入发生在 MS Access DB 上。应用程序从源代码中运行得很好。
在 Windows XP 或 Windows 2003 Server IIS 上部署它时,应用程序无法与 MS Access DB 交互,因此会引发异常。
我意识到这是因为 Read &对位于 App_Data 文件夹中的 MS Access DB 的写入访问权限。
如何启用已部署文件夹的读写(管理员)权限?
IIS 7.0 ( Windows 2003 Server )
I have deployed a ASP.Net ( VS 2008) Application on IIS. Application is trying to read MS Access DB, delete the existing Tables and again re extract the data to the MS Access DB.
Read & Write takes place on MS Access DB. Application works great from Source Code.
On deploying it on Windows XP or Windows 2003 Server IIS, Application fails to interact with MS Access DB and so it throws an Exception.
I realized this is causes because of Read & Write Access to MS Access DB which is located on the App_Data Folder.
How to enable Read and Write ( Admin ) Rights on the Deployed folder ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 IIS 7.5+ (Windows Server 2008),更好的答案是允许“IIS_IUSRS”组进行写入。我相信这个组甚至包含了 IIS 8+ AppPool 用户,因此它是确保对 App_Data 的写入访问的更持久的方法
A better answer for IIS 7.5+ (Windows Server 2008) is to allow write by the group "IIS_IUSRS". I believe this group even incorporates the IIS 8+ AppPool users, so its a much more durable way to ensure write access to App_Data
尝试转到 App_Data 文件夹属性并添加具有读写权限的
ASPNET
用户Try to go to App_Data folder property and add
ASPNET
user with read and write privileges