<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>A Better Way &#187; web trending</title>
	<atom:link href="http://www.thejacklawson.com/index.php/tag/web-trending/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thejacklawson.com</link>
	<description>Finding a better way to get things done, a technical journey</description>
	<lastBuildDate>Tue, 24 Aug 2010 21:10:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Tracking AJAX in ASP.NET with Google Analytics</title>
		<link>http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/</link>
		<comments>http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 02:00:36 +0000</pubDate>
		<dc:creator>Jack Lawson</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[web trending]]></category>

		<guid isPermaLink="false">http://www.thejacklawson.com/?p=102</guid>
		<description><![CDATA[Image by carveconsulting via Flickr (skip down a little further if you don&#8217;t need an introduction to Google Analytics.) I love Google Analytics. In fact, I&#8217;m a big fan of Google as a whole, and I do the majority of my work using Google Docs, Calendar, and Gmail (online collaboration! oh, and free) and Google [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/76347018@N00/2290586287"><img title="Google analytics for recruitment" src="http://farm4.static.flickr.com/3243/2290586287_6c02972b60_m.jpg" alt="Google analytics for recruitment" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/76347018@N00/2290586287">carveconsulting</a> via Flickr</dd>
</dl>
</div>
</div>
<p><em>(skip down a little further if you don&#8217;t need an introduction to <a class="zem_slink" title="Google Analytics" rel="homepage" href="http://www.google.com/analytics">Google Analytics</a>.)</em></p>
<p>I love <a class="zem_slink" title="Google" rel="homepage" href="http://google.com">Google</a> Analytics. In fact, I&#8217;m a big fan of Google as a whole, and I do the majority of my work using Google <a class="zem_slink" title="Google Docs" rel="homepage" href="http://docs.google.com/">Docs</a>, <a class="zem_slink" title="Google Calendar" rel="homepage" href="http://google.com/calendar">Calendar</a>, and Gmail (online collaboration! oh, and free) and Google Analytics is a beautiful tool for businesses, whether their <a class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a>&#8216;s primary focus is online sales or just a small info-about-my-business site. If you don&#8217;t have some kind of tracking, you&#8217;re missing out on very important information; GA is a good place to start. Anybody can put GA into their website, and everybody should put something in.</p>
<p>The way GA works is by dropping a snippet of <a class="zem_slink" title="JavaScript" rel="wikipedia" href="http://en.wikipedia.org/wiki/JavaScript">Javascript</a> into your page; this javascript runs a series of tests against the visitor&#8217;s browser, checking <a class="zem_slink" title="Display resolution" rel="wikipedia" href="http://en.wikipedia.org/wiki/Display_resolution">screen resolution</a>, flash capabilities, seeing if the user is unique, watching the user&#8217;s path through the website, checking the user&#8217;s location, and much, much more (all collected anonymously). This is all put into an interface where you can see the data collected and organized. However, <a class="zem_slink" title="Ajax (programming)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">AJAX</a> applications don&#8217;t function as normal websites- you don&#8217;t get a new <a class="zem_slink" title="Hit (internet)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Hit_%28internet%29">page hit</a> every time you fire off an UpdatePanel, because it&#8217;s not a full page refresh. So, we need to do a little trickery to get things to work the way we want them to.</p>
<p><em>(you can start reading again if you skipped earlier.)</em></p>
<p>If you have the Google Analytics in the host page (whether the aspx page, or more likely, the master page), then you have to register a client script block that calls the trackpageview method. If you use <a class="zem_slink" title="JQuery" rel="homepage" href="http://jquery.com/">jQuery</a>, it&#8217;ll look something like:</p>
<p><code>ScriptManager.RegisterClientScriptBlock(UpdatePanelID, typeof(UpdatePanel), "uniqueIdentifierString", "$(document).ready(function(){ pageTracker._trackPageview('/pagename'); });", true);</code></p>
<p>If you&#8217;re not using jQuery, you&#8217;ll have to do a little more work to attach to the window&#8217;s onload event, but it&#8217;s pretty similar.<br />
What you&#8217;re doing is registering a script block to execute when the UpdatePanel updates (because it won&#8217;t execute JS returned in the text), and using the pageTracker object (that the GA code you copied when you first set up GA on your site created) to force a pageview for a page you define. For my applications, I generally use something like &#8220;/dataentry/guestbook/edit&#8221; or &#8220;/dataentry/guestbook/delete&#8221; so that I can easily track guestbook views, as well as edits / deletes. It&#8217;s both a way to track controls you load via AJAX, and a cheap shot at logging (not perfect data, though, so you&#8217;re still best off doing all of your own logging on events, of course.)</p>
<p>The official Google help doc on the subject is also here: <a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&amp;answer=55519" target="_blank">http://www.google.com/support/analytics/bin/answer.py?hl=en&amp;answer=55519</a></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/570dfef3-4261-4739-9d63-560430307e2b/"><img class="zemanta-pixie-img" style="border: medium none ; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=570dfef3-4261-4739-9d63-560430307e2b" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em> </em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Del.icio.us"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Del.icio.us" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to digg"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to digg" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to reddit"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to reddit" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Technorati"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Technorati" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;h=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Newsvine"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Newsvine" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Stumble Upon"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Stumble Upon" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Google Bookmarks"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Google Bookmarks" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Live-MSN"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Live-MSN" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics&amp;url=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to SlashDot"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to SlashDot" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;t=Tracking+AJAX+in+ASP.NET+with+Google+Analytics" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to FaceBook"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to FaceBook" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Twitter"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Twitter" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Twitter" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/&amp;title=Tracking+AJAX+in+ASP.NET+with+Google+Analytics&amp;srcURL=http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Google Buzz"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Google Buzz" alt="Add 'Tracking AJAX in ASP.NET with Google Analytics' to Google Buzz" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.thejacklawson.com/index.php/2009/09/tracking-ajax-in-asp-net-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Analytics</title>
		<link>http://www.thejacklawson.com/index.php/2008/06/analytics/</link>
		<comments>http://www.thejacklawson.com/index.php/2008/06/analytics/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 00:40:44 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[web trending]]></category>

		<guid isPermaLink="false">http://www.thejacklawson.com/?p=13</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>Having searched through a large number of analytics software, I was extremely surprised at the lack of, well, good software. It seemed that there were two ends on the spectrum: cheap (or free) software that took years to parse through IIS log files and then still recompiled every time you clicked a link, or there was the really, really expensive stuff that did everything you wanted and sends a team to wash your car every other Tuesday. Having looked through about a dozen tools, I finally found a fit: Google Analytics.</p>
<p>GA is a beautiful tool; just throw in a .js file, a couple variable configurations, and you&#8217;re done. It&#8217;ll show you everthing from the most common city people are visiting from, to the highest web browser / OS combo (which is extremely useful.. can we drop IE 6 YET? The CSS support is killing me). It&#8217;s got every metric I could hope to track. However, that doesn&#8217;t solve all problems &#8211; what do we do with old trending data? How do we get them together? How do we archive these Google reports?</p>
<p>Even then, the answer is clear: the holy grail of universal data format, XML. Google Analytics very conveniently exports all reports as XML format, so it&#8217;s really just a matter of taking all of the old data and pushing it through a little tool thrown together quickly using Visual Studio, which parses and exports data in Google&#8217;s XML format. Now we&#8217;ve got all of our data stored and backed up, and even ready for the next thing to come after Google.</p>
<p>I&#8217;ll attach a breakdown of all of the different tools we looked at, tomorrow.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em> </em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;title=Analytics" title="Add 'Analytics' to Del.icio.us"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Analytics' to Del.icio.us" alt="Add 'Analytics' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;title=Analytics" title="Add 'Analytics' to digg"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Analytics' to digg" alt="Add 'Analytics' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;title=Analytics" title="Add 'Analytics' to reddit"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Analytics' to reddit" alt="Add 'Analytics' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.thejacklawson.com/index.php/2008/06/analytics/" title="Add 'Analytics' to Technorati"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Analytics' to Technorati" alt="Add 'Analytics' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;h=Analytics" title="Add 'Analytics' to Newsvine"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Analytics' to Newsvine" alt="Add 'Analytics' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;title=Analytics" title="Add 'Analytics' to Stumble Upon"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Analytics' to Stumble Upon" alt="Add 'Analytics' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;title=Analytics" title="Add 'Analytics' to Google Bookmarks"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Analytics' to Google Bookmarks" alt="Add 'Analytics' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;title=Analytics" title="Add 'Analytics' to Live-MSN"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Analytics' to Live-MSN" alt="Add 'Analytics' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Analytics&amp;url=http://www.thejacklawson.com/index.php/2008/06/analytics/" title="Add 'Analytics' to SlashDot"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Analytics' to SlashDot" alt="Add 'Analytics' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;t=Analytics" title="Add 'Analytics' to FaceBook"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Analytics' to FaceBook" alt="Add 'Analytics' to FaceBook" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home?status=http://www.thejacklawson.com/index.php/2008/06/analytics/" title="Add 'Analytics' to Twitter"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/twitter.png" title="Add 'Analytics' to Twitter" alt="Add 'Analytics' to Twitter" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/reader/link?url=http://www.thejacklawson.com/index.php/2008/06/analytics/&amp;title=Analytics&amp;srcURL=http://www.thejacklawson.com/index.php/2008/06/analytics/" title="Add 'Analytics' to Google Buzz"><img src="http://www.thejacklawson.com/wp-content/plugins/social-bookmarking-reloaded/googlebuzz.png" title="Add 'Analytics' to Google Buzz" alt="Add 'Analytics' to Google Buzz" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.thejacklawson.com/index.php/2008/06/analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
