Hello For SEO purposes, I would like to insert the Article Title in the HTML <title>. I can do this via Javascript for sure, but for SEO, search engines actually check the article title text, and not the title contents (modified after pageload) in the DOM. It's more preferable to add the text via the server than the client. Specifically, I have modified the default.aspx.vb to set the page title to "PageName : PortalName" Title = PortalSettings.ActiveTab.TabName + " : " + PortalSettings.PortalName This works fine for most pages in the site, but the articles page has the same title as the news listing page. (It's the same page). As I don't have the source code for Advanced Articles, it's not an option for me to set the page title there. I was wondering if there's a way to modify default.aspx.vb? [pseudocode] IF (I'm writing a news article) THEN Title = AdvancedArticles.NewsArticleTitle + " : " + PortalSettings.PortalName ENDIF [/pseudocode] Or perhaps by some other means I had not thought of. Thanks! Ian Symonds http://www.tourismnt.com.au/
|