Hi, Joe
Today, when I go to http://www.mojoportal.com/, almost all errors are not exist yet, it's so good.
But still a little javascript bug, but it is in msAnalytics.js,
Under the html code, has this script:
///////////////////////////////////////////////////////////////////
<script language="javascript" type="text/javascript">
msAnalytics.ProfileId = 'C62F';
msAnalytics.CookieDomain = 'mojoportal.com';
msAnalytics.EnableLinkTracking(); // I did't know the function of this, but this code will lead a small bug in msAnalytics.js .
msAnalytics.TrackPage();
</script>
//////////////////////////////////////////////////////////////////
In msAnalytics.js, there are below code:
//////////////////////////////////////////////////////////////
;MicrosoftAnalytics.prototype.OnTrackLink=function(evt)
{
..............
var loggingObject=srcElement.LoggingObject;var urlPath=srcElement.pathname;var dotIndex=urlPath.lastIndexOf(".");var foundMatch=false;
}
//////////////////////////////////////////////////////////////
Because all the AspNet-Menu elements like Home, Blog,Download,Online Demos, Documentation,........ all has no pathname attrubute,
So when click these element the ie will show "undifined urlPath" error.
But this is no effect, because almost most user will not see this error.
Thanks!