IIS SEO Toolkit

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
12/17/2009 7:02:05 PM
Gravatar
Total Posts 7

IIS SEO Toolkit

Joe,

Have you tried running the IIS SEO Toolkit against www.mojoportal.com? You have to point it to the sitemap.ashx for it to find all the links, which is fine. The issue is every single page it finds says it does not have a title tag in the header, description meta tag, and no h1 tag. The funny part is the toolkit allows you to see the content of the pages found with these errors and you can see all three items it says it is missing. I' m just curious why it reports this way against mojoPortal websites. I know it is just a tool to assist with SEO, but seeing how Scott Gu and company are pushing it in there blog posts, etc. it might be worth understanding why it is reporting these violations as I could see it potentially turning some people away from using mojo. Just curious.

12/18/2009 5:02:09 AM
Gravatar
Total Posts 18439

Re: IIS SEO Toolkit

Hi Ryan,

It seems a bug in the IIS SEO Toolkit, it doesn't seem to be able to handle the html 5 doctype.

<!DOCTYPE html>
<html lang="en">

With this doctype it stops crawling after just the home page and reports violations that do not exist.

When I change the doctype to xhtml it crawls the site as it should and reports true violations only and no false violations.

<!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" >

doctype is controlled at the skin level in the layout.master file.

I will report this issue to Microsoft.

Best,

Joe

You must sign in to post in the forums. This thread is closed to new posts.