使用FBA时如何更新用户信息列表中的数据

发布于 2024-08-27 09:18:38 字数 355 浏览 4 评论 0原文

我必须支持一个 SharePoint Web 应用程序,该应用程序使用具有自定义成员身份的 FBA 和自定义角色提供程序来根据两个不同的 LDAP 对用户进行身份验证。用户数据仅存储在用户信息列表中。不使用 SSP 用户配置文件。

现在,其中一位用户结婚了,因此她的姓氏在 LDAP(存储她的信息的 LDAP)中发生了更改。但此更改不会配置到用户信息列表中。

我想知道我必须选择什么选项来将用户数据的更改提供给用户信息列表。我已经尝试过手动更新用户的姓氏,但似乎某些信息(如姓氏、名字)在用户信息列表中不可编辑。我尝试以站点管理员的身份编辑它们。

那么我有什么选择来解决这个问题呢?能够编辑每只手的信息也是一种解决方案,但当然不是最优选的解决方案。

I've got to support a SharePoint web application which uses FBA with a custom membership and a custom role provider to authenticate the user against two different LDAPs. The user data are only stored in the user information lists. The SSP user profiles are not used.

Now one of the users got married and therefore her surname got changed in the LDAP (the one where her information are stored). But this change doesn't get provisioned into the user information list.

I wondering what option I have to provision changes of user data to the user information list. I've already tried to update the last name of the user manually, but it seems as if certain information like surname, first name are not editable in the user information list. I tried to edit them as a site administrator.

So what option do I have to solve this problem? Being able to edit the information per hand would also be a solution but of course not the most preferred one.

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

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

发布评论

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

评论(1

扛起拖把扫天下 2024-09-03 09:18:38

MS 不推荐,但它会让您继续...转到数据库并更新 AllUserData 其中 (nvarchar1 LIKE '%OldName%')。另外,更新 UserInfo 表,其中 (tp_Title LIKE '%OldName%')。

Not recomended by MS, but it will get you going...Go to the database and update the AllUserData where (nvarchar1 LIKE '%OldName%'). Also, update the UserInfo table where (tp_Title LIKE '%OldName%').

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文