I have a menu, which I wish to connect to a sitemap, but I get this error, what am I missing?
The file web.sitemap required by XmlSiteMapProvider does not exist.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: The file web.sitemap required by XmlSiteMapProvider does not exist.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:Geekepedia says:
The most common case when the "The file web.sitemap required by XmlSiteMapProvider does not exist" error is received is when a SiteMap control was added to a WebForm, however you don't have a mandatory Web.sitemap file in the root of your web application.
To fix this error, make sure you have this file in the root directory, and that it is a valid XML file that has the website's sitemap defined. An example Web.sitemap file can be seen below:
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="Default.aspx" title="Geekpedia" description="Home Page of Geekpedia.com ">
<siteMapNode url="Register.aspx" title="Registration" description="Register a new account." />
<siteMapNode url="SignIn.aspx" title="Sign-In" description="Sign-in into your existing account." />
</siteMapNode>
</siteMap>
I am having the same problem... works fine on my local machine... error when I host.
I saw Geekepedia's post about 5 min before coming here, but alas, not sure what the issue is.
When I find it I will post here, at this point I am sure that it's cos i have subfolders in my hosting.
So like 2 seconds later, I stick it in the wwwroot of the remote server (or my little piece of it at least) and presto:P
Almost a waste of a post.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment