IIS7:经典 ASP 应用程序使用 Windows 身份验证对 .mdb 文件进行写访问
我想在我的网站 (IIS7) 上运行一个经典的 ASP 应用程序。该站点包含一个 .mdb 数据库文件。我已启用 Windows 身份验证并在身份验证下禁用匿名。我希望某个域组(TESTGROUP)的成员能够通过网站写入数据库,但我不希望他们通过Windows直接访问文件。我似乎找不到 .mdb 文件的正确权限来实现这一点。
I have a classic ASP application I want to run on my website (IIS7). This site contains an .mdb database file. I have enabled windows authentication and disable anonymous under authentication. I want members of a certain domain group (TESTGROUP) to have access to write to the database through the website, but I don't want them to have direct access to the files through windows. I cannot seem to find the correct permissions for the .mdb file to make this possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单地说,这对于 Ms Access 来说是不可能直接实现的。为什么不使用 Sql Server Express,它是免费的、更稳定并且您可以完全控制您的访问权限。
如果你必须使用MsAccess,为什么不在它前面添加一个Webservice,并使用活动目录进行访问控制。
这是一个好的开始:
查看用户是否属于C# + Asp.net 中的 Active Directory 组
Simply, that's not directly possible with Ms Access. Why not using Sql Server Express, it's free, much more stable and you have full control of your access rights.
If you have to use MsAccess, why not add a Webservice before it, and use active directory for access control.
This is a good start:
See if user is part of Active Directory group in C# + Asp.net