ok PJ let me explain.
Lets say i have a treeview control i can map it to a site map like below
and use ROLES
those roles are Active Directory groups like below
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="
http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="default.aspx" title="Home">
<siteMapNode url="app.aspx" title="Approver Expenses"
roles="Information Technology,CallCentre" />
<siteMapNode url="aud.aspx" title="Audit Page" roles="Information
Technology" />
<siteMapNode url="admin.aspx" title="Admin Manager"
roles="HeadOffice" />
</siteMapNode>
</siteMap>
To use enable security trimming i can enable it like so below(which uses my
web.sitemap file above):-
<siteMap defaultProvider="XmlSiteMapProvider" enabled="true">
<providers>
<add name="XmlSiteMapProvider"
description="Default SiteMap provider."
type="System.Web.XmlSiteMapProvider "
siteMapFile="Web.sitemap"
securityTrimmingEnabled="true" />
</providers>
</siteMap>
So if someone logs in and he is in HEAD OFFICE roles he/she would get to
see the Admin Manager page above .
This sceario is definitely in a windows auth scenario.
And also need a connection to active directory and also using the the
defaultProvider="AspNetActiveDirectoryMembershipProvider"
So what i was asking is.
Is there a TAB control available that i can use instead of TreeView control.
Hope that helps
Patrick