↧
Answer by SLaks for sitemaps.xml in asp.net mvc
You can use LINQ to XML to create an XML sitemap from your database, then return the sitemap from an action by returning Content(document.ToString(), "text/xml").
View ArticleAnswer by profanis for sitemaps.xml in asp.net mvc
It is important for crawlers to be able to crawl your site quicker and with more accurate.You can create a controller, say siteMapController and in Index add the following public ActionResult Index() {...
View Articlesitemaps.xml in asp.net mvc
My website has dynamic content, new links are being created.my db has a table which pretty much contains all the added urls.So my question is how importnt is it for me to have sitemaps.xml, and also is...
View Article