Tagged Questions
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.
6
votes
2answers
389 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 ...
4
votes
1answer
1k views
Is there a MVC SiteMap Provider that supports ASP.NET MVC 2 Areas feature?
I am looking for a MVC SiteMap provider in which I can specify area as well, along with controller and action. Did anyone use a SiteMap provider that supports MVC 2 Areas ?
Help will be greatly ...
4
votes
4answers
2k views
Dynamically changing the title of a SiteMapNode
We have a website that uses a bog-standard default sitemap with security trimming as follows:
<siteMap defaultProvider="default" enabled="true">
<providers>
<add ...
2
votes
3answers
112 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. ...
2
votes
1answer
70 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, ...
2
votes
1answer
187 views
How to model this navigation scenario with efficient Route and ASP.NET Sitemap?
i need to model the following scenario, but I can't get it working with the MvcSitemapProvider (i think my problem also maps directly to the default SiteMapProvider). I want to get the default ...
1
vote
0answers
48 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 ...
1
vote
1answer
54 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
574 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 ...
1
vote
1answer
255 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 ...
1
vote
2answers
1k 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 ...
1
vote
1answer
559 views
ASP.NET MVC 2 Authorize ONLY unauthenticated users
im trying to figure out how to authorize only unauthenticated users. i have a sign in tab displayed in my site map and i only want it to show up when the user hasnt yet logged in.
1
vote
1answer
234 views
.NET Localized sitemap from database?
I have a custom sitemapprovider which loads pages from the database.
Pages (pageid, fk_pageid (parent), title, url, show_in_menu)
I would like to globalize/localize the title of the page. What's ...
1
vote
2answers
993 views
SiteMap and Url routing
I have a question similar to the one described here:
ASP.NET URL Routing with WebForms - Using the SiteMap
My ASP.Net WebForms webapplication has a Sitemap, similar to this:
<?xml version="1.0" ...
1
vote
1answer
1k views
ASP.NET: Custom dynamically populated site map (SiteMapProvider)
I'm trying to write my first very own SiteMapProvider subclass. It is meant to be populated dynamically using a bunch of different database lookups, much like all of the examples I've found on the ...
1
vote
1answer
904 views
ASP.Net TreeView control on MasterPage isn't always populated
I'm working on my first ever ASP.Net project, and I seem to have been thrown in the deep end right away. All of my site files are stored in a database, so I'm using a VirtualPathProvider to access ...
1
vote
1answer
2k views
Sharepoint: Custom SiteMapProvider for custom list
I need to customise the title property for SiteMapNodes.
I am using WSS, and have created a custom document library. While navigating through this library I want to change the names of the nodes in ...
0
votes
0answers
23 views
MvcSiteMapProvider not work with Custom Namespace for web Project
I have Created ASP.NET MVC 3 Web Project (Named ToolNameWeb) and Changed the Default Namespace ( say MyCompanyName.ToolName.Web)
I installed the MvcSiteMapProvider 3.2.1.0
I put line ...
0
votes
1answer
35 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 ...
0
votes
1answer
61 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" ...
0
votes
1answer
112 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
84 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
438 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,
...
0
votes
2answers
450 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
57 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 ...
0
votes
0answers
77 views
Is XmlSiteMapProvider fully usuable out of the box?
So I've developed this nice little web site in ASP.NET 4. I'm using a Web.sitemap file for navigation, which works wonderfully.
I also created a backend system where the user can add, reorder and ...
0
votes
2answers
195 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 ...
0
votes
1answer
168 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
225 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 ...
0
votes
1answer
302 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
736 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
215 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 ...
0
votes
1answer
202 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
168 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
81 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
505 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 ...
0
votes
2answers
433 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
348 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 ...
0
votes
1answer
876 views
Show/Hide custom menu items as based on Roles/Web.sitemap file
I have a custom menu, which leverages the standard asp.net sitemap. It works well but some of my pages are dynamically generated by URL rewriter, so they don't sit in the sitemap XML file. At the ...
0
votes
0answers
117 views
MvcSitemap or routefile, or both?
I find the MvcSiteMapProvider very interesting. But will I somehow be able to generate, autoload (or something in that category) the route (declaration) for my website?
0
votes
1answer
264 views
Mixing sitemap and dynamic (database) pages?
i have a static .sitemap file for my site. I want to add 5 subcategories for each maincategory (@Products) so they will appear in my menu (menu is custom helper which works, i just need to add to the ...
0
votes
1answer
842 views
Sitemap security trimming using roles attributes only, and not allow/deny rules elsewhere
I am aware that the tag has the "roles" attribute to make up for the nodes that don't have the "url" attribute, which can be resolved in other ways. I'm not interested in these other ways, though, ...