473,770 Members | 4,355 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

cannot hide link in sitemap using roles= ...

Hi,

i have a problem with the visibility of my sitemap.
There is one role defined: "manager"
There are two users: 'user1' (member of role manager) and 'user2' (not
member).
The login.aspx redirects to a page with a menu control associated to a
SiteMapDataSour ce.

I want to hide pg1 for all non-members of role manager (=user2).

I did this in:

web.sitemap:
------------
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microso ft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="page1.aspx " title="pg1" roles="manager" >
<siteMapNode url="page2.aspx " title="pg2" >
</siteMapNode>
<siteMapNode url="page3.aspx " title="pg3" >
</siteMapNode>
</siteMapNode>
</siteMap>

in web.config:
------------
<roleManager enabled="true" />

<siteMap defaultProvider ="AspXmlSiteMap Provider" enabled="true">
<providers>
<clear/>
<add name="AspXmlSit eMapProvider"
type="System.We b.XmlSiteMapPro vider, System.Web, Version=2.0.360 0.0,
Culture=neutral , PublicKeyToken= b03f5f7f11d50a3 a"
siteMapFile="we b.sitemap" securityTrimmin gEnabled="true"/>
</providers>
</siteMap>

My problem: when logging with any user, that user (user2) sees all the
pages, included pg1.

How to make pg1 invisible for user2 using this sitemap?
Thanks
Chris
Jun 19 '07 #1
0 2217

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1638
by: Frank Bishop | last post by:
I'm using forms authentication with a database. I have an app that lets users run online reports. Right now, depending on their login in the DB, they get redirected to the pages that apply to them. I've noticed that nothing stops them from browsing out to another users page once they log in. I'm thinking maybe I should just hide content instead. Is their any simple examples of this or is my current way fixable? Thanks,
1
2012
by: chris.rust | last post by:
Has anyone else had any trouble setting up a sitemap view to be filtered by roles? We've put a cust role provider in place, and we can verify that it's only being called once for each connection, and is returning the correct roles, but... When we specify a role on the top sitemapnode that role seems to add to the roles on lower level nodes, so we end up needing to put roles="*" on the top node, but then regardless of which role we put...
0
912
by: Jeevan | last post by:
We have a sitemap file( similar to below) with securitytrimming enabled in the provider declaration. There is a menu that is bound to this sitemap. <siteMapNode> <siteMapNode url="~/Url.aspx" title="A URL" description="Some LinkA" roles="rolea"/> <siteMapNode url="" title="Group" description="Some Group" roles="rolea,roleb">
0
1414
by: Demetri | last post by:
Hello, I have built a web application with authentication modeled after the following video by Scott Guthrie: http://download.microsoft.com/download/8/3/6/836dd5f8-fa92-499f-8219-0d326f13bf18/hilo_masterpages-nav_FINAL.wmv So I have a site map, a treeview control on a page that binds to the sitemap. I only want certain items on there to be available for certain roles.
0
1745
by: rmgalante | last post by:
Hi, I've got my site configured to use a menu control, a site map, security trimming, and roles. Everything seems to be working, except I have the following problem. If I define a hierarchical menu in my sitemap as follows: <siteMap ...> <siteMapNode url="" title="Main Menu" description="" roles="*">
0
1465
by: Chris | last post by:
Hi, i have a problem with sitemap combined with roles. I already posted this but i reformulated simplier: here: there are two defined users: user1 and user2 there is one role: manager user1 belongs to the role manager; user2 not. there are three pages (page1.aspx, page2.aspx and page3.aspx).
6
18669
by: Max2006 | last post by:
Hi, I need to hide a series of siteMapNodes to certain roles. That means roles have access to the siteMapNode, but the node doesn't appear on the navigation menu. I'll use Response.Redirect to jump to hidden pages. How can I do that? I tried securityTrimmingEnabled="true" in my web.config. But it doesn't help because the pages are accessible to the roles. I just want to hide the pages from the main menu when certain roles login
1
1563
by: Seth Williams | last post by:
Let's say I have an ASP.Net menu, with a datasourceID of a siteMapPath, which of course is based on a web.sitemap file Based on the person logged into the page, I have code in files in the App_Code folder which gets their job code, by which I need to let some people see some things (some root nodes and sometimes it's a sub node) and other people not see things. However, I don't know how to refer to the Menu Items in code As I...
1
2648
by: carlos | last post by:
I am using asp.net 2.0 to bind my menu controls using xml web.sitemaps. I created a sitemap for each role, and what I am trying to do is dynamically bind the menucontrol's datasource with the appropriate sitemap based on the logged in user's role. It is not working though. Any ideas? //Master Page Code Behind protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack)
0
9602
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9439
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10237
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10017
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8905
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7431
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6690
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3987
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2832
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.