DropDownList 的 GetUsersInRole 数据源
您好,我需要在 DropDownList 中显示属于特定角色的“用户”列表。
这是我的代码:
// Find DropDownList
DropDownList myUserList = (DropDownList)uxInsertAuthorInput.FindControl("uxUserListSelector");
// Bind data to DropDownList
myUserList.DataSource = Roles.GetUsersInRole("CMS-AUTHOR");
myUserList.DataBind();
myUserList.DataTextField = "UserName";
我的问题是当访问者在 DropDownList 中选择一个项目时。 传递的实际值是“UserName”而不是“UserId”。
当访问者从 DropDownList 中选择项目时,我需要使用“UserId”值。
怎么做呢? 感谢您的帮助
Hi I need to display in DropDownList a list of "Users" belonging a specific ROLE.
This is my code:
// Find DropDownList
DropDownList myUserList = (DropDownList)uxInsertAuthorInput.FindControl("uxUserListSelector");
// Bind data to DropDownList
myUserList.DataSource = Roles.GetUsersInRole("CMS-AUTHOR");
myUserList.DataBind();
myUserList.DataTextField = "UserName";
My problem is when a visitor select an item in DropDownList.
The actual value passed is the "UserName" and not the "UserId".
I need to use the "UserId" value when a visitor select an item from DropDownList.
How to do it?
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用选定的用户名并调用 Membership.GetUser。然后,您可以使用 MembershipUser 获取用户 ID。 ProviderUserKey 属性。
当然,如果目标是从用户 ID 中获取 MembershipUser,那么您将在调用
GetUser
后获得该用户。You can take the selected username and call Membership.GetUser. You can then get the user ID using the MembershipUser.ProviderUserKey property.
Of course, if the goal was to get the MembershipUser from the user id, then you'll have the user after calling
GetUser
.返回您的 .aspx 代码(如果您使用所见即所得,则返回设计的代码)。更改 SQL 数据源中的查询。我通过使用类似的方法做到了这一点:
我认为这也可以通过编程来完成,但为什么要麻烦呢?
Go back to your .aspx code (or the designed if you used WYSIWYG). Change the query in the SQL Datasource. I did this similarly by using:
I assume this can also be done programatically, but why bother?