我知道主题可能有点奇怪,但我不确定如何准确描述我的目标
我正在尝试在内容管理系统中执行一些基于角色的权限。我能想到的最好的方法是从数据库中提取角色列表并将它们放在CheckBoxList中。从那里,我将检查值的逗号分隔字符串保存到数据库的页面详细信息中。最后,当页面被拉回时,我通过拉下逗号分隔的字符串并将其拆分为String()并循环遍历值来检查当前用户是否具有权限。
我担心的是当我遍历CheckBoxList并将值转换为字符串时,循环方法会在字符串的末尾添加逗号...然后我必须先将逗号删除,然后再将其保存到数据库中。
我的问题是,有没有更好的方法来执行此操作,以便我不必返回字符串并在保存之前删除尾随逗号?
''# this is to get all selected items from
''# a checkboxlist and add it to a string
''# the reason for this is to insert the final string
''# into a database for future retrieval.
Dim i As Integer
Dim sb As StringBuilder = New StringBuilder()
For i = 0 To CheckBoxList1.Items.Count - 1
If CheckBoxList1.Items(i).Selected Then
sb.Append(CheckBoxList1.Items(i).Value & ",")
End If
Next
''# now I want to save the string to the database
''# so I first have to strip the comma at the end
Dim str As String = sb.ToString.Trim(",")
''# Then save str to the database
''# I have now retrieved the string from the
''# database and I need to now add it to a One Dimensional String()
Dim str_arr() As String = Split(str, ",")
For Each s As String In str_arr
''# testing purposes only
Response.Write(s & " -</br>")
''# If User.IsInRole(s) Then
''# Do Stuff
''# End If
Next
答案 0 :(得分:1)
将所有值放在字符串列表中,然后使用String.Join将它们连接起来。我不会评论保留以逗号分隔的列表而不是用户与角色的一对多关系。 : - )
Dim values as List(Of String) = New List(Of String)()
For i = 0 To CheckBoxList1.Items.Count - 1
If CheckBoxList1.Items(i).Selected Then
values.Add( CheckBoxList1.Items(i).Value )
End If
Next
Dim str As String = String.Join( ",", values.ToArray() )
答案 1 :(得分:1)
您是否可以简单地拥有一个包含对页面的引用的数据库表(通过名称,路径或其他一些唯一ID),以及对该角色的引用?
我当然不是说这是最好的解决方案(无论如何),这只是一个例子:
角色表:
RoleId | RoleName
_________________
1 | Editor
2 | Administrator
页面表:
PageId | PageName
8 | ~/Page1.aspx
9 | ~/OtherPlace/Page2.aspx
PageRole表:
RoleId | PageId
2 | 8
2 | 9
1 | 9
然后,您可以将数据存储在连接表中,并在访问该页面时根据当前页面撤回您的角色。当然,它根本不需要基于页面,您可以像我的示例中那样轻松替换Permission。
答案 2 :(得分:-1)
如果使用ASP.NET成员身份,则可以为用户分配多个角色。
Roles.AddUserToRoles(username, roles);
Roles.IsUserInRole(role);
需要考虑的事情。