ASP.NET 表单身份验证与 SQL Server 集成
我有以下场景:
服务器 1 - IIS6 Active Directory
SERVER 2 - SQL SERVER 上具有表单身份验证的 ASP.NET Web 应用程序 数据库
如何将 Forms Authentication AD 的安全性与 SQL Server 集成?
我的目标是使用 Forms AD 身份验证并集成经过身份验证的用户以获取数据配置文件。
前任: 从 [TABLE] 中选择 *,其中 [TABLE].[USER] = SYSTEM_USER
I have a follow scenario:
SERVER 1 - IIS6
ASP.NET Web Application with Forms Authentication on Active Directory
SERVER 2 - SQL SERVER
Database
How i can integrate the security of Forms Authentication AD with SQL Server?
My objective is use Forms AD authentication and integrate the user authenticated for get data profile.
Ex:SELECT * FROM [TABLE] WHERE [TABLE].[USER] = SYSTEM_USER
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
获取当前登录用户的用户名,并通过参数将其传递给您使用的数据库查询。
You can use the
to get the username of the currently logged in user and pass that via a parameter to the database query that you use.
您应该确认您的 SQL 会员资格提供商申请。这里有一些信息:
http://technet.microsoft.com/ en-us/library/cc197472(office.12).aspx
You should confire your application for SQL Membership provider. Some information here:
http://technet.microsoft.com/en-us/library/cc197472(office.12).aspx