I'm doing some research on security and sitemaps in ASP.net and am unfortunately running short on time. I have not worked too much with ASP.net security so I'm not completely sure if I'm heading in the right direction.
Here is my problem:
I have a public website (i.e. on the internet) that will allow any user to sign up to. The websit...
I have an asp.net sitemap. I have child sitemap nodes "Mediterranean Fruits", "Apple" and "Orange" under the parent sitemap node "Fruits"
This sitemap is bound to an asp.net menu control.
The problem is "Apple" and "Orange" appear on the same line in the menu displayed in the browser.
It is displayed as
1) Fruits 2)Mediterranea...
How can one build dynamic sitemaps in ASP.Net?
...
I've tried every method that I knows but didn't got the solution on "How to create an rss feeds and sitemap for a dynamic site that get updated automatically".
...
Hello,
just signed up my site with Google Webmasters and im trying to create a Sitemap XML file.
I assumed as it is just an XML file that Google would provide a web based generator tool to generate this automatically. but it seems that they do not, and after goggling a "Google Site map generator", nothing obvious was revealed.
After ...
hi,
i am using MvcSitemapProvider and is working fine, but
its returning all results in Https instead of Http.
i am unable to find a way to return the results in http (sitemap for search engine)
<mvcSiteMapNode title="Details" controller="Home" action="News" dynamicNodeProvider="DynamicPostDetailsProvider, MyNamespace" updatePriority=...
I have a website that makes use of a web.config. I tried adding in the following code:
<customErrors mode="On" defaultRedirect="error.htm">
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
But it doesn't seem to work. Errors still show up. Could I be putting it in the wrong place?
Sample:
<authentic...
I have a site with around 100,000 unique pages.
(1) How do I create a Sitemap for all these links? Should I just list them flat in a large sitemap protocol compatible file?
(2) Need to implement this on Google App Engine where there is a 1000 item query limit, and all my individual site URLs are stored as separate entries. How do I so...
Let's say a want to use Yahoo Boss for a brand new, unindexed site; Is there a way I submit an XML feed i.e. a site map in order to get results before The site gets indexed ?
...
I'm implementing a sitemap file with videos. Google asks these files to have tags like:
<video:video>
<video:content_loc>..</video:content_loc>
</video:video>
But JSP 2.0 doesn't allow me to. colon is supposed to be used for declarative tags.
How can I generate these tags in a clean way? (no CDATA)
...
I'd like to validate my sitemap xml LOCALLY not through a website (I know of http://www.webmasterwebtools.com/sitemap-validation/ and http://www.xml-sitemaps.com/validate-xml-sitemap.html but those won't work for me).
...
Is it possible to create a sitemap.xml file which is dynamic and is actually created each time it is requested using c#
The obvious thing to do would be to call the file sitemap.aspx and have it return XML, but it has to be called sitemap.xml and look like an XML file (headers etc) to the requester.
...
Hi all,
I'm stuck with a problem of which I can not imagine I am the first person having to deal with it. Yet, Google comes up with nothing useful and neither does SO, so here I am.
I'm using ASP.NET MVC1 with a sitemap. Using an html helper I create a navigation menu that highlights the current selected option in the Site.Master page....
Hi. Sorry if this seems like a novice question.
I'm trying to create a navigation menu that will be displayed in every page of my mvc site.
I'm using MvcSiteMapProvider, and the general idea is to create a general ApplicationController, which every controller inherits.
public abstract class ApplicationController : Controller
{
publ...
Hi Guys,
I am using MVCSiteMap - http://mvcsitemap.codeplex.com/ - with Azure and I am trying to figure out how I can get it to remove the PORT number at the end of the generated sitemap.
Currently, I am getting
http://127.0.0.1:5100/
For this url and all others. Does anyone have any experience with this or know how to remove the p...
Hi there,
We have recently installed a Google Search Appliance in order to power our internal search (via the java api), and all seems to be well, however I have a question regarding 'automatic' site-map generation that im hoping you guys may know the answer to.
We are aware of the GSA's ability to auto-generate site maps for each of i...
I am storing my sitemaps in my web folder. I want web crawlers (Googlebot etc) to be able to access the file, but I dont necessarily want all and sundry to have access to it.
For example, this site (stackoverflow.com), has a site index - as specified by its robots.txt file (http://stackoverflow.com/robots.txt).
However, when you type h...
I'm using v2.0 of the MVC SiteMap project.
With the System.Web.XmlSiteMapProvider in webforms, I often stored custom attributes on nodes, and accessed them through the Attributes[] collection. This is very useful for building non-standard collections of nodes, that all share an attribute.
The MVC SiteMap doesn't seem to support custom...
I think the C# ASP.NET SiteMap uses URL as a dictionary key internally since it has to lookup by URL all the time, and forces them to be unique. I want to use that lookup table, but I can't seem to find access to it.
What is the most efficient way to get a specific SiteMapNode by URL? Is there access to it?
My use case is that I wa...
Hi,
I want to create a dynamic (fetching data from the database) XML sitemap which I can submit to Google webmaster tools.
Surprisingly, I couldn't find any recent controls/code online to do this. The most recent code I found was this http://weblogs.asp.net/bleroy/archive/2005/12/02/432188.aspx which is for ASP.Net 2.0. I don't mind u...