ASP.NET System.Web.SiteMapProvider class that provides a common base class for all site map data providers, and a way for developers to implement custom site map data providers that can be used with the ASP.NET site map infrastructure as persistent stores for SiteMap objects.
0
votes
1answer
31 views
MVC SiteMapProvider not loading the nodes when hosted in IIS but works in VS Dev Server
I have added the MVC SiteMapProvider to the ASP.NET MVC4 App through nuget
Added the sitemap menu & sitemap path html helper in the layout.
When running the web application in Visual Studio ...
0
votes
0answers
31 views
How to dynamically change the title of only one node
In a node, the title should be the name of the user logged into the system.
In addition I would like the result to be cached, because to retrieve the username I have to go ...
0
votes
1answer
252 views
MVC SiteMap Hiding a node from menuhelper, but display in sitepathhelper (breadcrumbs)
I'm trying to hide a node from my site menu, but display it in my breadcrumbs
I'm following the tutorial here: https://github.com/maartenba/MvcSiteMapProvider/wiki/Advanced-Node-Visibility
...
0
votes
1answer
107 views
SecurityTrimming in asp.net SiteMap
i am facing strange issue in my site, i have menu, which i am handling with asp:menu and SiteMap, now i want to restrict menu's based on roles, so i am using securityTrimmingEnable="true" in ...
1
vote
1answer
166 views
Treeview Website.sitemap get selected node
I want to be able to bind a treeview with a sitemap data provider in asp.net, and when a user clicks on a node it not navigate to that page, but to update a textbox.
I'm not sure if it is possible ...
0
votes
1answer
382 views
ASP.NET Web.Sitemap - one role not being displayed in nav menu while others are
I'm working on an ASP.NET C# application that has three roles defined for various user levels within the application: "User", "Manager", and "Admin". I've completed most of the User and Admin stuff, ...
0
votes
1answer
292 views
How to stop calling Sitemap provider IsAccessibleToUser each post back
We are using securityTrimming in our ASP.NET web site and using site map to show/hide menus. But the problem is for every post back it keeps coming to this class and go through
IsAccessibleToUser ...
0
votes
1answer
169 views
Convert a dataset (or a custom collection) into a sitemap
I have generic collection list, which has certain properties.... its a heirchachical collection, that I now I want to make into a sitemap file.... i.e., the standard one that MSDN states.... so the ...
0
votes
0answers
50 views
How can I get SiteMap to work properly when deployed in Virtual Directory?
We built an asp.net 3.5 website that work great when we create and deploy it to a new website in IIS 6. However, our customer's server setup dictates that we must deploy it to a virtual directory of ...
1
vote
1answer
203 views
ASP MVC Sitemap is there an Image HTML Helper?
I have an ASP MVC Sitemap which look something like this
<mvcSiteMapNode title="Home" imageUrl="home.png" controller="Home" action="Index">
<mvcSiteMapNode title="Search" ...
1
vote
1answer
216 views
sitemapdatasource does not call OnDataBinding?
I would like to filter entries from web.sitemap using OnDataBinding event, but it does not execute. I would like to have functionality, which allows me to verify whether user's role have access to ...
0
votes
1answer
184 views
Custom SharePoint 2007 Subsite Navigation Control
I've been asked to create an asp.net UserControl that allows custom navigation between subsites of a SharePoint 2007 website. The sites mimics a school structure with semesters that have different ...
0
votes
1answer
526 views
How to combine web.sitemap and SiteMapProvider in ASP.NET
So, here's what I'm working on. I have an ASP.NET web app, in which the sitemap is displayed on the site.master file through the web.sitemap.
Here's the site.master:
<asp:SiteMapDataSource ...
0
votes
1answer
209 views
Orchard CMS: No web.sitemap to build my custom menus from
I am starting out with OrchardCMS and have hit a road block (for me at least).
I have code that generates the menus I need (incremental, drop down or whatever, the code does it), but it uses the ...
0
votes
1answer
670 views
MVC Sitemap renders empty when the current action is not in the Mvc.sitemap file
Is it possible to force the sitemap control to render the menu when the current action is not listed in the MVC.sitemap file?
I have a simple top nav. When the current action is in the sitemap, the ...
0
votes
0answers
244 views
Can ASP.NET MVC SiteMap provider use arbitrary resources?
At this page http://mvcsitemap.codeplex.com/workitem/5361
the author wrote that the resources must be in special application folder (App_GlobalResources). OK, I put them in it. But in my project I use ...
0
votes
2answers
707 views
How to use Custom SiteMapProvider in ASP NET MVC?
I am currently trying to implement a Custom SiteMap Provider. I have read several tutorials about it, and followed their lead.
I have created a subclass of XmlSiteMapProvider named MySiteMapProvider ...
0
votes
1answer
310 views
xmlsitemapprovider multiple nodes with same URL
Google it around but cannot get the answer.
<siteMapNode url="~/BV1Menu.aspx" title="Baseline Visit 1 Menu" description="Baseline Visit 1 Menu">
<siteMapNode url="~/Forms/RAND.aspx" ...
0
votes
1answer
520 views
Error XmlSiteMapProvider does not exist
///This is my Agent.sitemap
<siteMapNode url="default.aspx#" title="Start" description="Start">
<siteMapNode url="~/dirCommon/default.aspx" title="Home" description="Home" />
...
1
vote
0answers
213 views
Use different site maps in an EXT TreePanel
This is the ASP.NET snippet:
<ext:TreePanel ID="tpPanel" runat="server" UseArrows="true" Width="220">
And this is the C# code behind it:
...
1
vote
1answer
543 views
How to configure multiple sitemaps with asp:menu control
It's driving me nuts. I've searched and tried and searched and tried ... now I ask for your help!
I have an asp:menu control that uses a sitemap. Once the user is authenticated, I want to dynamically ...
6
votes
5answers
269 views
Sitemap Security Trimming throws SQL error
I am using the default Sitemap provider with secutiry trimming. But, some how, I get:
A network-related or instance-specific error occurred while establishing a connection to SQL Server.
I'm ...
1
vote
1answer
391 views
Problems with using ImageUrl DynamicNodeProviderBase
Apparently, the title takes the value of ImageUrl
In my DynamicNodeProviderBase class configure both the Title and the ImageUrl
DynamicNodeProviderBase
const string keyFormated = "Subsidiary_{0}";
...
1
vote
1answer
1k views
How to Programmatically modify generate Sitemap in ASP.Net C#
I am working on a multilingual Dynamic Website, I need to generate sitemap (Breadcrumb) navigation for each pages and i have done my research & worked of few example for last two days ...
0
votes
2answers
796 views
Faking SiteMap.CurrentNode to use another existing SiteMapNode
My site is dynamically creating the sitemap from both database and xml data. This is working great, however, for a portion of the site that lists news articles it was decided to not put the news ...
2
votes
3answers
342 views
WHERE clause in LINQ query seems to be failing
Please forgive any naivety, I'm brand new to the world of C#. Let me know if I've left out helpful information.
I'm building a custom SiteMapProvider for the Customer Portal for Dynamics CRM 2011. ...
1
vote
1answer
243 views
How to access (PortalSiteMapNode) RootNode outside the SiteMapProvider?
A very simple question for experienced sharepoint developers I think.
Inside a PortalSiteMapProvider I can access the RootNode this way:
(PortalSiteMapNode) RootNode
My Question is, how can I ...
1
vote
1answer
285 views
Custom navigationprovider in sharepoint - how to generate the navigation items from a list?
thank you for reading my question.
Following situation:
-A sharepoint list, based on a custom content type. The content type is nothing more than a folder with some extra properties (like url, ...
0
votes
1answer
205 views
Setting role in SiteMapNode Sub Node
These Site Map Node is in Web.Config
<siteMapNode title="Hotel Setup" roles="Administrator,Hotel Admin">
<siteMapNode url="~/Page/HotelSetup/RoomTypeManagement.aspx" title="Room Types" ...
3
votes
1answer
3k views
mvc 3 sitemap provider- multiple paths pointing to same node
i've recently started to use marteenba's sitemap provider, because i couldn't solve a route problem with the other sitemap i had. It's way better than my previous one. My question is: how can i create ...
0
votes
1answer
318 views
No breadcrumbs with MVCSiteMapProvider custom MvcRouteHandler
I have 2 routes in global.asax
routes.MapRoute(
"DefaultFriendlyUrl",
"Page/{FriendlyUrl}",
null,
new string[] { "MvcApplication2.Controllers" ...
0
votes
1answer
235 views
Error message: “XmlSiteMapProvider is not initialized. Call Initialize() method first”
the problem is that I have an override BuildSiteMap() function in a class called EditableSiteMapProvider, which is used to edit the Sitemap by removing or adding new nodes. and when i do ...
0
votes
0answers
1k views
UnauthorizedAccessException {“Access to the path is denied.”}
I am trying to edit the sitemap before loading by using the class EditableSitemapProvider where the sitemap gets updated by the database to show added or removed items. While removing an item,
...
2
votes
2answers
1k views
MVC SiteMap Provider - can anybody post a sample that works with dynamic nodes?
It is a very simple scenario:
public class StockItemController : Controller
{
public ActionResult Index(int categoryId)
{
/// ...
}
}
Sample routes:
/StockItem?categoryId=1 // ...
0
votes
0answers
175 views
SiteMapProvider at .NET MVC
Need a help with MVC SiteMapProvider.
I have a link query that collect data from db:
var dbData = db.goods;
Please, write to me how to parse this data using SiteMapProvider and make the updatable ...
1
vote
1answer
743 views
Asp.Net MVC SiteMap - siteMapNode: How to redirect to Controller ActionResult
I have a simple menu based on a standard xml sitemap, that when a link is clicked I want it to post to a controller actionresult that does not have a view/page. I don't seem to have a problem when I ...
0
votes
2answers
448 views
MVC sitemap provider
In mvc sitemap provider I want to show a list menu's based on the id of the logged in user.I was thinnking about dynamicnodeprovider but it is working for the first request it self that is before ...
8
votes
2answers
2k views
MVC Sitemap Provider — Maintaining URL parameters in breadcrumb trail
I'm using the MvcSiteMapProvider from http://mvcsitemap.codeplex.com/ to create a breadcrumb trail for my project. I have some URLs that need an ID to be passed to present information for the ...
1
vote
1answer
565 views
SiteMapPath Stops Displaying in ASP.NET 4
We have a SiteMapPath control on the page and this is bound to an XML Web.sitemap file with the default provider. We've had this site for years and have recently upgraded to ASP.NET 4.0 on IIS 7.5 on ...
0
votes
2answers
540 views
Different asp:menu on a user basis
I have a oracle database which stores menu and user data, for a local Intranet.
The data includes which usesr have access to which pages.
Originally I created a class which extened the ...
1
vote
1answer
549 views
Setting the page's title and sitemap node to the same text with ASP.NET MVC Sitemap Provider
I'm using ASP.NET MVC 3 and ASP.NET MVC Sitemap Provider. I would like to set the view's title and the sitemap node to the same text. How would I do this? Where would it be done and are there any ...
0
votes
1answer
2k views
SharePoint 2010: Point a PortalSiteMapProvider to a specific site collection
Is it possible to get an OOTB PortalSiteMapProvider to provide a site heirarchy from a specified site collection or URL (i.e. not the current site collection) in SharePoint 2010? In MOSS this was only ...
0
votes
2answers
461 views
Equivalent to ASP.NET WebForms URL Authorization in MVC
We're considering making the move from WebForms to MVC for our (quite substantial) intranet application.
The intranet app currently uses Windows authentication. Authorization to particular folders is ...
3
votes
2answers
5k views
SiteMap change SiteMapProvider?
I've got a custom menu navigation built from a web.sitemap file, the first line of this would be something like:
SiteMapNodeCollection topLevelNodes = SiteMap.RootNode.ChildNodes;
This works - it ...
0
votes
1answer
368 views
Ignoring specific query string parameters in custom sitemapprovider
I’ve written my own staticsitemapprovider which builds a dynamic site map. The problem I have is that sometimes pages will have additional parameters in the query string which I need to ignore.
...
0
votes
1answer
271 views
Configuring ASP.NET Site Map URL Domain
I have a site map configured as such:
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="www.website.com/index.aspx" title="Site Name" ...
0
votes
1answer
125 views
Is it possible to block a page from opening using securityTrimmingEnabled=true
I have custom SiteMapProvider and RoleProvider that works together properly: IsAccessibleToUser returns false if current user's role isn't mentioned in SiteMapNode.Roles for page requested.
So ...
0
votes
2answers
2k views
How does IPrincipal gets its roles?
I need to get know how SiteMapProvider.IsAccessibleToUser() works.
Built-in XmlSiteMapProvider calls HttpContext.User.IsInRole() which uses System.Security.Principal.GenericPrincipal in case of forms ...
1
vote
2answers
794 views
How does XmlSiteMapProvider check user to be in specified role?
I roll my own SiteMapProvider inheriting System.Web.XmlSiteMapProvider.
I want to override logic of checking user to be in a role specified in siteMapNode's property roles:
<siteMapNode ...
0
votes
1answer
939 views
Return different siteMapNodes for different roles
I'm using my own SiteMapProvider which is just inherited and little bit rewritten System.Web.XmlSiteMapProvider.
I want to return different siteMapNode for clients and for managers. Or maybe the same ...
