CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 10/31/2007 1:33:41 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 10 Views: 19 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
11 Items, 1 Pages 1 |< << Go >> >|
dhassen
Asp.Net User
XmlSiteMapProvider requires that sitemap nodes have unique URLs.10/31/2007 1:33:41 PM

0/0

 Hi everyone,

 

I'm using a normal web.sitemap using the default provider.

I use the site map for a couple of navigation elements, including a sitemap path and a sub- section page listing control like used in the asp.net data tutorials, to show a pages -sub pages as a list of links.

I want to use the same URL twice, you can reach the page in question from 2 different pages.  I get the following error:

 

Multiple nodes with the same URL '/amsV1/analysis/PupilGrades.aspx' were found.  XmlSiteMapProvider requires that sitemap nodes have unique URLs.

 

Is there any way round this? Thanks 

Johnson2007
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/2/2007 4:46:21 AM

0/0

 You can append one of the two URLs with a virtual useless requeststring.

e.g.


  

<siteMapNode url="About.aspx" title="About" ... />
<siteMapNode url="About.aspx?type=" title="About2" ... />
 
Johnson
Amanda Wang - M
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/2/2007 6:52:50 AM

0/0

Hi,

Base on your description, you want to use the same url twice in the sitemap file, right?

You can append some querystring or # for the url to distinguish the same URL, like below:

  <siteMapNode title="Home" description="Home" url="~/default.aspx" >
    <siteMapNode title="Printers" description="Printer Service" url="~/printer_service.aspx">
      <siteMapNode title="Warranties" description="Extended Warranties" url="~/ext_warranty.aspx" />
      <siteMapNode title="Maintenance" description="Maintenance Aggrements" url="~/maintenance.aspx" />
    </siteMapNode>
    <siteMapNode title="Computers" description="PC Service" url="~/pc_service.aspx?1=1" >
      <siteMapNode title="Warranties" description="Extended Warranties" url="~/ext_warranty.aspx?2=2" />
      <siteMapNode title="Maintenance" description="Maintenance Aggrements" url="~/maintenance.aspx#" />

Hope it helps.


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
dhassen
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/2/2007 11:19:00 AM

0/0

 thanks to both of your for your replies.

Now I don't get the error, but I'm using a sitemappath control, and on the pages where the url in the sitemap has been appened on to, the sitemappath shows the parent node for the url in the sitemap that hasn't had anything appened. Does that make sense?

So in Amanda's example above, if I arrived at maintenance from the PC service page, the Printer Service title and url will be used in the sitemappath

Any ideas on this?
 

Amanda Wang - M
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/5/2007 4:58:11 AM

0/0

Try to remove the "#", use the querystring to instead of it.

Like below:

 <siteMapNode title="Home" description="Home" url="~/default.aspx" >
    <siteMapNode title="Printers" description="Printer Service" url="~/printer_service.aspx">
      <siteMapNode title="Warranties" description="Extended Warranties" url="~/ext_warranty.aspx" />
      <siteMapNode title="Maintenance" description="Maintenance Aggrements" url="~/maintenance.aspx" />
    </siteMapNode>
    <siteMapNode title="Computers" description="PC Service" url="~/pc_service.aspx?1=1" >
      <siteMapNode title="Warranties" description="Extended Warranties" url="~/ext_warranty.aspx?2=2" />
      <siteMapNode title="Maintenance" description="Maintenance Aggrements" url="~/maintenance.aspx?3=3" />

Hope it helps.


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
dhassen
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/5/2007 9:53:31 AM

0/0

 I've tried using a querstring instead, and it still doesn't work.

 I suppose it'll have to do!

Thanks anyway 

Johnson2007
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/5/2007 10:02:03 AM

0/0

What about the whole code in sitemap, master page? Would you please provide the code if you don't mind? 


Johnson
Amanda Wang - M
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/5/2007 10:20:30 AM

0/0

Hi,

It is so weird! But they all work fine in my test application.

Below is my test code:

1. The master page code behind:

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="TestSitemapPath_MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
        <table>
            <tr>
                <td colspan="3">
                    <asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1">
                    </asp:Menu>
                </td>
            </tr>
            <tr>
                <td colspan="3">
<asp:SiteMapPath ID="SiteMapPath1" runat="server" Style="position: static" Font-Names="Verdana" Font-Size="0.8em" PathSeparator=" > ">
<PathSeparatorStyle Font-Bold="True" ForeColor="#507CD1" />
<CurrentNodeStyle ForeColor="#333333" />
<NodeStyle Font-Bold="True" ForeColor="#284E98" />
<RootNodeStyle Font-Bold="True" ForeColor="#507CD1" />
</asp:SiteMapPath>
                </td>
            </tr>
            <tr>
                <td style="width: 100px">
                </td>
                <td colspan="2">
        <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
        </asp:contentplaceholder>
                </td>
            </tr>
        </table>
 <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
    </form>
</body>
</html>

2. The sitemap file:

<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0">
   <siteMapNode title="Home" description="Home" url="~/default.aspx" >
    <siteMapNode title="Printers" description="Printer Service" url="~/printer_service.aspx">
      <siteMapNode title="Warranties" description="Extended Warranties" url="~/TestSitemapPath/Default.aspx" />
      <siteMapNode title="Maintenance" description="Maintenance Aggrements" url="~/maintenance.aspx" />
      <siteMapNode title="ASP" description="Alternative Pricing" url="~/asp.aspx" />
      <siteMapNode title="Block Time" description="Block Time" url="~/block_time.aspx" />
    </siteMapNode>
    <siteMapNode title="Computers" description="PC Service" url="~/pc_service.aspx?1=1" >
      <siteMapNode title="Warranties" description="Extended Warranties" url="~/TestSitemapPath/Default.aspx?2=2" />
      <siteMapNode title="Maintenance" description="Maintenance Aggrements" url="~/maintenance.aspx?3=3" />
      <siteMapNode title="ASP" description="Alternative Pricing" url="~/asp.aspx?4=4" />
      <siteMapNode title="Block Time" description="Block Time" url="~/block_time.aspx?5=5" /></siteMapNode>
  </siteMapNode>

You can  refer it.

It these always show the problem as your description, could you please post more detail about your problem, which can help us repro your problem as possible as we can.

Hope it helps.


Please remember to mark the replies as answers if they help and unmark them if they provide no help.


Yours sincerely,
Amanda Wang
Microsoft Online Community Support
dhassen
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.11/6/2007 1:10:48 PM

0/0

OK here we go then.... here's my master:

 

<%@ Master Language="VB"  EnableTheming="true"  %>
<%@ Register TagPrefix="custom" Namespace="myControls" %>
<%@ Import Namespace="System.Data" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">


    Protected Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs)
        '  Profile.UserTheme = "main"
        ' Theme = Profile.UserTheme
        
    End Sub

    Protected Sub LoginStatus1_LoggedOut(ByVal sender As Object, ByVal e As System.EventArgs)
        ' following removed to fix databind error on enter grades for pupils page
        'Session.Abandon()
        'Session.Clear()
        Response.Redirect("~/Default.aspx")
    End Sub

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        If Context.User.Identity.IsAuthenticated Then
            Membership.GetUser(Page.User.Identity.Name)
        End If
       
        
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title runat="server">Untitled Page</title>
<link href="App_Themes/main/layout.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/main/type-tags.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/main/login-controls.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/main/data-controls.css" rel="stylesheet" type="text/css" />
<link href="App_Themes/main/other-controls.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div class="container">
        <div class="heading">
        <h1>
            <asp:FormView ID="frmvSchoolName" runat="server" DataKeyNames="id" DataSourceID="systemData">
                <ItemTemplate>
                    <asp:Label ID="data_valueLabel" runat="server" Text='<%# Bind("data_value") %>'></asp:Label> 
             Assessment and Reporting System
                </ItemTemplate>
            </asp:FormView>
        </h1>
        </div>
        <div class="navLogBar">
            <div class="floatleft">
                <asp:SiteMapPath ID="SiteMapPath1" runat="server">
                </asp:SiteMapPath>
            </div>
            <div class="floatright">
            <asp:LoginView ID="LoginView1" runat="server">
                <LoggedInTemplate>
                    Welcome
                    <asp:LoginName ID="LoginName1" runat="server" />.
                </LoggedInTemplate>
                <AnonymousTemplate>
                    Please Log in:
                </AnonymousTemplate>
            </asp:LoginView>
            <asp:LoginStatus ID="LoginStatus1" runat="server" OnLoggedOut="LoginStatus1_LoggedOut" />
            </div>
            <br class="clear" />
        </div>
        <div class="content">
            <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
            </asp:contentplaceholder>
            
        </div>
  </div>
  <asp:ObjectDataSource
    ID="systemData" 
    runat="server" 
    SelectMethod="GetSystemDataBySchoolName" 
    TypeName="SystemDataBLL">
  </asp:ObjectDataSource>
        <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
  </form>
</body>
</html>
  

And here's my sitemap:

 

 

<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
  <siteMapNode url="~/Default.aspx" title="Start Page"  description="The Start Page and Main Menu of the AMS">
    <siteMapNode url="~/Login.aspx" title="Login Page" />
    <siteMapNode url="~/ServerDown.aspx" title="Message to Users"/>
    <!-- Grades node-->
    <siteMapNode url="~/grades/EnterGradesClassList.aspx" title="Entering Grades - Class List" >
      <siteMapNode url="~/grades/EnterGradesClassPupils.aspx" title="Enter Grades" />
    </siteMapNode>
    <!-- Grades for admin node-->
    <siteMapNode url="~/grades/EnterGradesClassList-admin.aspx" title="Entering Grades - Class List">
      <siteMapNode url ="~/grades/EnterGradesClassPupils-admin.aspx" title="Enter or Edit Grades"/>
    </siteMapNode>
    <!-- Analysis node-->
    <siteMapNode url="~/analysis/ViewGradesMenu.aspx" title="Assessment Analysis - View Grades Menu">
      <siteMapNode url="~/analysis/ViewGradesByPupil.aspx" title="View Grades By Pupil" description="- Search for a Pupil to View Grades">
        <siteMapNode url="~/analysis/PupilGrades.aspx" title="Pupil Grades"></siteMapNode>
      </siteMapNode>
      <siteMapNode url="~/analysis/ViewGradesMyTutorGroup.aspx" title="View Tutor Group's Grades" description="- View my tutor group's grades for all the relevant assessments">
        <siteMapNode url="~/analysis/PupilGrades.aspx?" title="Pupil Grades"></siteMapNode>
      </siteMapNode>
    </siteMapNode>
    <!-- analysis for admin node-->
    <siteMapNode url="~/analysis/ViewGradesMenu-admin.aspx" title="Assessment Analysis - View Grades Menu">
      <siteMapNode url ="~/analysis/ViewGradesByPupil-admin.aspx" title ="View Grades By Pupil" description ="- Search for a Pupil to View Grades">
        <siteMapNode url="~/analysis/PupilGrades-admin.aspx" title="Pupil Grades">
          <siteMapNode url="~/analysis/DeleteGrades-admin.aspx" title="Delete Grades"/>
        </siteMapNode>
      </siteMapNode>
      <siteMapNode url="~/analysis/ViewGradesByTutorGroup-admin.aspx" title ="View Grades By Tutor Group" description="- View tutor groups' grades for all relevant assessments">
        <siteMapNode url="~/analysis/PupilGrades-admin.aspx?2=2" title="Pupil Grades">
          <siteMapNode url="~/analysis/DeleteGrades-admin.aspx?3=3" title="Delete Grades"/>
        </siteMapNode>
      </siteMapNode>
      <siteMapNode url="~/analysis/AttainmentGradesAnalysis-admin.aspx" title="View Attainment Grades" description="- View all attainment grades for a selected assessment"/>
      <siteMapNode url="~/analysis/EffortGradesAnalysis-admin.aspx" title="View Effort Grades" description="- View all effort grades for a selected assessment"/>
    </siteMapNode>
    <!-- Reports Node-->
    <siteMapNode url="~/reports/ReportsMenu.aspx" title="Reports Menu">
      <siteMapNode url="~/reports/InterimReports.aspx" title="Interim Reports" description="- View and Print Interim Reports For Completed Assessments" />
    </siteMapNode>
    <!--Admin node -->
    <siteMapNode url="~/admin/Default.aspx" title="Admin"  description="Admin Menu for system administration">
      <!--System Setup -->
      <siteMapNode url="~/admin/setup/Default.aspx" title="System Setup">
        <siteMapNode url="~/admin/setup/SystemVariableList.aspx" title="System Variables" description ="- View and edit System Variables such as School Name" />
        <siteMapNode url="~/admin/setup/YearRunningList.aspx" title="Year Running List" description ="- View Year Running Records" />
        <siteMapNode url="~/admin/setup/AddYearRunning.aspx" title="Add Year Running" description="- Add a Year Running Record" />
      </siteMapNode>
      <!--User admin -->
      <siteMapNode url="~/admin/users/Default.aspx" title="User Administration">
        <siteMapNode url="~/admin/users/CreateUser.aspx" title="Add User"  description="- Add a new user account" />
        <siteMapNode url="~/admin/users/Users.aspx" title="Manage Users"  description="- View, edit and manage existing user accounts">
          <siteMapNode url="~/admin/users/UserDetails.aspx" title="User Details" />
        </siteMapNode>
      </siteMapNode>
      <!--Pupil admin-->
      <siteMapNode url="~/admin/pupils/Default.aspx" title="Pupil Administration">
        <siteMapNode url="~/admin/pupils/PupilList.aspx" title="Pupil List" description="- View, edit and manage pupil details" />
        <siteMapNode url ="~/admin/pupils/AddPupil.aspx" title ="Add Pupil" description="- Add a new Pupil" />
      </siteMapNode>
      <!-- Classes Admin-->
      <siteMapNode url="~/admin/classes/Default.aspx" title="Class Administration">
        <siteMapNode url="~/admin/classes/ClassList.aspx" title="Class List" description="- View all classes">
          <siteMapNode url="~/admin/classes/DeleteClass.aspx" title="Delete Class"/>
        </siteMapNode>
        <siteMapNode url="~/admin/classes/ViewClassesByFilter.aspx" title="Filter Classes" description="- View classes By filters such as teacher or subject">
          <siteMapNode url="~/admin/classes/ClassListByTeacher.aspx" title="Class List By Teacher" />
          <siteMapNode url="~/admin/classes/ClassListBySubject.aspx" title="Class List By Subject" />
          <siteMapNode url="~/admin/classes/ClassMembersByClass.aspx" title="Class Members" />
        </siteMapNode>
        <siteMapNode url="~/admin/classes/AddClass.aspx" title="Add Class" description="- Add a new class record" />
        <siteMapNode url="~/admin/classes/ChangeClassMembers.aspx" title="Change Class Members" description="- Add or remove pupils from classes"/>
      </siteMapNode>
      <!-- subject admin-->
      <siteMapNode url="~/admin/subjects/Default.aspx" title="Subject Administration">
        <siteMapNode url="~/admin/subjects/SubjectList.aspx" title="Subject List"  description="- View, edit and manage subjects">
          <siteMapNode url="~/admin/subjects/SubjectDetails.aspx" title="Subject Details" />
        </siteMapNode>
        <siteMapNode url="~/admin/subjects/AddSubject.aspx" title="Add Subject" description="- Add a new subject record" />
      </siteMapNode>
      <!-- faculties admin-->
      <siteMapNode url="~/admin/faculties/Default.aspx" title="Faculty Administration">
        <siteMapNode url="~/admin/faculties/FacultiesList.aspx" title="Faculty List" description="- View, edit and manage faculties"/>
        <siteMapNode url="~/admin/faculties/AddFaculty.aspx" title="Add Faculty" description="- Add a new faculty record" />
      </siteMapNode>
      <!-- Tutor Groups, year group, and key stage admin-->
      <siteMapNode url="~/admin/tutoryeargroups/Default.aspx" title="Tutor, Year Group and Key Stage Administration">
        <siteMapNode url="~/admin/tutoryeargroups/TutorGroupList.aspx" title="Tutor Group List" description="- View, edit and manage tutor groups" />
        <siteMapNode url="~/admin/tutoryeargroups/AddTutorGroup.aspx" title="Add Tutor Group" description="- Add a new tutor group record" />
        <siteMapNode url="~/admin/tutoryeargroups/YearGroupList.aspx" title="Year Group List" description ="- View, edit and manage year groups" />
        <siteMapNode url="~/admin/tutoryeargroups/AddYearGroup.aspx" title="Add Year Group" description="- Add a new year group record" />
        <siteMapNode url="~/admin/tutoryeargroups/KeyStageList.aspx" title="Key Stage List" description="- View, edit and manage key stages" />
        <siteMapNode url="~/admin/tutoryeargroups/AddKeyStage.aspx" title="Add Key Stage" description="- Add a new key stage record" />
      </siteMapNode>
      <!-- Assessment admin-->
      <siteMapNode url="~/admin/assessments/Default.aspx" title="Assessment Administration">
        <siteMapNode url="~/admin/assessments/AssessmentsList.aspx" title="Assessment Management" description="- View, edit and manage assessments - create records and alter assessment windows">
          <siteMapNode url="~/admin/assessments/CreateAssessmentRecords.aspx" title="Create Assessment Records" />
        </siteMapNode>
        <siteMapNode url="~/admin/assessments/AddAssessment.aspx" title="Add Assessment" description="- Create a new assessment - set dates and assessment type" />
        <siteMapNode url="~/admin/assessments/AssessmentTypeList.aspx" title="Assessment Types" description="- View, edit and manage assessment types" />
        <siteMapNode url="~/admin/assessments/AddAssessmentType.aspx" title="Add Assessment Type" description="- Add a new assessment type record" />
        <siteMapNode url="~/admin/assessments/Grades.aspx" title="Manage Grades" description="- Manage, create and edit the grades used in assessments">
          <siteMapNode url="~/admin/assessments/AttGradesList.aspx" title="Attainmant Grade List" description="- View, edit and manage attainment grades" />
          <siteMapNode url="~/admin/assessments/AddAttGrade.aspx" title="Add Attainment Grade" description="- Add a new attainmant grade record"/>
          <siteMapNode url="~/admin/assessments/EffGradesList.aspx" title="Effort Grade List" description="- View, edit and manage effort grades"/>
          <siteMapNode url="~/admin/assessments/AddEffGrade.aspx" title ="Add Effort Grade" description="- Add a new effort grade record"/>
        </siteMapNode>
      </siteMapNode>
      <!-- Messages Admin-->
      <siteMapNode url="~/admin/messages/Default.aspx" title="User Messages">
      </siteMapNode>
    </siteMapNode>
  </siteMapNode>

</siteMap>
  

 The parts we are interested in are the analysis node and the analysis for admin node

 

Thanks guys 

SaintJimmy
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.12/20/2007 4:44:50 PM

0/0

 I don't know if this will help in your particular situation, but when I need to use the same URL more than once in the sitemap, I typically use a redirect... if you're familiar with UrlRewriter.NET, it's a great tool to use.

 Take this sitemap excerpt for example:

	<siteMapNode url="~" title="Home">
<siteMapNode url="~/about/default.aspx" title="About LC" description="">
<siteMapNode url="~/about/bookstore.aspx" title="Bookstore" />
</siteMapNode>
<siteMapNode url="~/alumni/default.aspx" title="Alumni">
<siteMapNode url="~/alumni/bookstore.aspx" title="Bookstore" />
</siteMapNode>
</siteMapNode>

   This follows the rules the XmlSiteMapProvider applies regarding duplicate URL's in the same sitemap, but I implement the redirect in Web.config (example uses UrlRewriter.NET) like so:

	<rewriter>
<redirect url="^~/[^/]+/bookstore.aspx$" to="~/bookstore/default.aspx" />
</rewriter>

  With that configuration, all requests for pages named "bookstore.aspx" that are one level down in the directory structure are redirected to the same page.

 This feels cleaner to me than appending a useless querystring on the URL.

 

One thing of note here... the SiteMapPath will be practically useless in that scenario because the actual URL won't be found in the sitemap at all.  I typically don't use a SiteMapPath anyway, because unless you're utilizing AJAX, the "Back" button works just as well, and that's what 90% of your visitors are going to use in their navigation anyway.

dhassen
Asp.Net User
Re: XmlSiteMapProvider requires that sitemap nodes have unique URLs.1/7/2008 10:04:49 AM

0/0

 Thanks for that, but as you say that solution doesn't really help because it doesn't work with the sitemappath. I find the sitemappath useful and my users seem to like to know where they are in the application. Thanks anyway!

11 Items, 1 Pages 1 |< << Go >> >|


Free Download:


Web:
SiteMap nodes and identical urls - Raj Kaimal Multiple nodes with the same URL '/Navigation/Common/Records.aspx' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLs. ...
XmlSiteMapProvider requires that sitemap nodes have unique URLs ... Multiple nodes with the same URL '/amsV1/analysis/PupilGrades.aspx' were found. XmlSiteMapProvider requires that sitemap nodes have unique ...
Wicked Code: Three Cures for Common Site Map Ailments Furthermore, you don't have to remove these nodes when you're finished because .... XmlSiteMapProvider requires every URL in a given site map to be unique. ...
Nine ASP.NET Site Navigation Problem Solutions: Part 1 XmlSiteMapProvider requires that sitemap nodes have unique URLs. The .NET Framework requires URL's to be unique because behind the scenes it stores ...
Exception in StaticSiteMapProvider - ASP.NET Forums XmlSiteMapProvider requires that sitemap nodes have unique URLs.] System.Web. StaticSiteMapProvider.AddNode(SiteMapNode node, SiteMapNode ...
.NET and Beyond: SiteMap nodes and Empty or identical Urls Multiple nodes with the same URL 'about:blank' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLs. ...
Multiple nodes with the same URL '/mysite/test.aspx' were found ... Multiple nodes with the same URL '/mysite/test.aspx' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLsBack to Error List ...
How to reload a treeview control : nodes, sitemap, have InvalidOperationException: Multiple nodes with the same URL '/WebSite2/Home.html ' were found. XmlSiteMapProvider requires that sitemap nodes have unique ...
[转]6 Tweaks for your ASP:Menu Control - Jailu.NET - 博客园 nothing.aspx' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLs.' You can't have two nodes with the same URL. ...
// Copyright (c ..." target="_" > // Copyright (c ... XmlSiteMapProvider requires that sitemap nodes have unique URLs."; public const string XmlSiteMapProvider_multiple_resource_definition = "Cannot have more ...




Search This Site:










confused - does visual web developer 2008 include the ajax toolkit?

multiple dnn installs in vs2003 - please verify

dnn and msde database

extending asp:menu to be a context-sensitive data-aware menu

wierd login problem with dnn 3.2.2

many thanks and recommendations..... thetravelgal website is launched

i wanna customize the input fields in user register wizard wht can i do ?

login control visual studio 2005

user instances in sql (vwd)

registered user to post threads on forum

ie web controls license

new articles

dnn2 hide login based on user status?

using a contect page to view a classic asp page?

how to implement itextcommunication interface

is it free?!?!?!?!

session lost / timeout - any ideas

dynamic theme and master page

webpage securityproblem

execute setups one after another

deployment using the new vs 2005 web application project ?

why? why would you use a proprietary navigation system.

controls and headings

sign in and register in dnn 3

subdir security in vs.net

file manager html output grows larger & larger

two login pages?

solpart: mouse-out delay over menu-items

dnn 3.1.1 possible search problem

new user page

 
All Times Are GMT