I think this is something you will have to deal programatically, hiding or showing Search Fields depending on the user Permissions, something like: If SecurityBasics.CurrentUser.GetPermission("YourPermissionKey").Action = PermissionAction.Grant
'-- grant access to whatever
Else
'-- deny access to whatever
End If