<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>DOT NET</title>
	<atom:link href="http://ajaxnet.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajaxnet.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<pubDate>Sat, 08 Dec 2007 10:47:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>How to retrieve a random records in ASP.NET</title>
		<link>http://ajaxnet.wordpress.com/2007/12/06/how-to-retrieve-a-random-records-in-aspnet/</link>
		<comments>http://ajaxnet.wordpress.com/2007/12/06/how-to-retrieve-a-random-records-in-aspnet/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 11:55:14 +0000</pubDate>
		<dc:creator>tobject</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[SQL]]></category>

		<category><![CDATA[SQL Server]]></category>

		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://ajaxnet.wordpress.com/2007/12/06/how-to-retrieve-a-random-records-in-aspnet/</guid>
		<description><![CDATA[Recently i needed to pull some random records from the database. One of the proposed solutions was something like this:
&#60;asp:sqldatasource id="SqlDataSource1" runat="server" connectionstring="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\MyName\MyDBfolder\DBfile.mdb" providername="System.Data.OleDb" selectcommand="SELECT TOP 1 *, Rnd([id]) AS Expr1 FROM Books ORDER BY Rnd([id]) DESC&#8221;&#62;&#60;/asp:sqldatasource&#62;
This works in the query builder but not when you run the application.
The reason that this doesn&#8217;t work [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Recently i needed to pull some random records from the database. One of the proposed solutions was something like this:</p>
<p><code>&lt;asp:sqldatasource id="SqlDataSource1" runat="server" connectionstring="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\MyName\MyDBfolder\DBfile.mdb" providername="System.Data.OleDb" selectcommand="SELECT TOP 1 *, Rnd([id]) AS Expr1 FROM Books ORDER BY Rnd([id]) DESC&#8221;&gt;&lt;/asp:sqldatasource&gt;</code></p>
<p>This works in the query builder but not when you run the application.</p>
<p>The reason that this doesn&#8217;t work is because the rnd method will return the same values over and over again, unless the randomize method is called! But there is another solution that will return a different order without calling the randomize method. The rnd method will also return a different number if a diferent parameter is used. So instead of using the ID value as the parameter, we should use a value that is different every <strong><u>time</u></strong> (now()) and for every <u><strong>record</strong></u> ([Id])</p>
<p><code>SELECT<br />
TOP 1 * FROM Books<br />
ORDER BY Rnd(-10000000*TimeValue(Now())*[id])</code></p>
<p><strong>MS SQL Server</strong><br />
The above example will work with MS Access. For Microsoft SQL Server you&#8217;ll use the <strong>NewId()</strong> function to return values of data type unique indentifier. These are similar to Windows GUIDs in that the current date/time is used to seed the random value generator. Again, you&#8217;ll use the ordinal position of the &#8220;random value&#8221; column to order the resultset.</p>
<p><code>SELECT<br />
   TOP 1 CategoryID,<br />
   CategoryName<br />
FROM<br />
   Categories<br />
ORDER BY<br />
   NewID()</code></p>
<p><strong>Note</strong>: This is not going to be a light operation if you have many, many records (say, a few hundred thousand). However, if you have use a WHERE clause to restrict the number of records that you are creating GUIDs for, then SQL Server will apply that before creating the GUIDs. For instances where you wish to return just a single record (rather than, say 5 random records), it may be better to create a static table with sequentially numbered records, and use a random number generator to determine which record should be returned.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ajaxnet.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ajaxnet.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajaxnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajaxnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajaxnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajaxnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajaxnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajaxnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajaxnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajaxnet.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajaxnet.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajaxnet.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajaxnet.wordpress.com&blog=2080507&post=8&subd=ajaxnet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajaxnet.wordpress.com/2007/12/06/how-to-retrieve-a-random-records-in-aspnet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.NET Best Practices for High Performance Applications</title>
		<link>http://ajaxnet.wordpress.com/2007/11/19/aspnet-best-practices-for-high-performance-applications/</link>
		<comments>http://ajaxnet.wordpress.com/2007/11/19/aspnet-best-practices-for-high-performance-applications/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 09:36:55 +0000</pubDate>
		<dc:creator>tobject</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[ASP]]></category>

		<category><![CDATA[NET]]></category>

		<guid isPermaLink="false">http://ajaxnet.wordpress.com/2007/11/19/aspnet-best-practices-for-high-performance-applications/</guid>
		<description><![CDATA[As i&#8217;m just starting to optimize my asp.net site, this article will help me building a simple checklist. Saved for personal reference  
ASP.NET is much more powerful than classic ASP, however it is important to understand how to use that power to build highly efficient, reliable and robust applications. In this article, I tried [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As i&#8217;m just starting to optimize my asp.net site, this article will help me building a simple checklist. Saved for personal reference <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>ASP.NET is much more powerful than classic ASP, however it is important to understand how to use that power to build highly efficient, reliable and robust applications. In this article, I tried to highlight the key tips you can use to maximize the performance of your ASP.NET pages. The list can be much longer, I am only emphasizing the most important ones.</p>
<ol>
<li>Plan and research before you develop</li>
<li>String concatenation</li>
<li>Avoid round trips to the server</li>
<li>Save viewstate only when necessary</li>
<li>Use session variables carefully</li>
<li>Use Server.Transfer</li>
<li>Use server controls when appropriate and avoid creating deeply nested controls</li>
<li>Choose the data viewing control appropriate for your solution</li>
<li>Optimize code and exception handling</li>
<li>Use a DataReader for fast and efficient data binding</li>
<li>Use paging efficiently</li>
<li>Explicitly Dispose or Close all the resources</li>
<li>Disable tracing and debugging</li>
<li>Precompile pages and disable AutoEventWireup</li>
<li>Use stored procedures and indexes</li>
</ol>
<p>Here is the full <a href="http://www.codeproject.com/aspnet/ASPNET_Best_Practices.asp">ASP.NET Best Practices for High Performance Applications</a> article.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ajaxnet.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ajaxnet.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajaxnet.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajaxnet.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajaxnet.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajaxnet.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajaxnet.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajaxnet.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajaxnet.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajaxnet.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajaxnet.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajaxnet.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajaxnet.wordpress.com&blog=2080507&post=7&subd=ajaxnet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajaxnet.wordpress.com/2007/11/19/aspnet-best-practices-for-high-performance-applications/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cool Free ASP.NET AJAX Rich Text Editor</title>
		<link>http://ajaxnet.wordpress.com/2007/11/13/cool-free-aspnet-ajax-rich-text-editor/</link>
		<comments>http://ajaxnet.wordpress.com/2007/11/13/cool-free-aspnet-ajax-rich-text-editor/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 13:15:06 +0000</pubDate>
		<dc:creator>tobject</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[CodePlex]]></category>

		<category><![CDATA[RTE]]></category>

		<guid isPermaLink="false">http://ajaxnet.wordpress.com/2007/11/13/cool-free-aspnet-ajax-rich-text-editor/</guid>
		<description><![CDATA[Kannan Sundarajan has written Rich Text Editor control using ASP.NET AJAX and shared it under the MS-PL license on CodePlex. It has a very rich feature set and Kannan hopes to enhance it further in the future. Since it is a CodePlex project you can report issues and make feature requests.
Check out the live demo [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://blogs.msdn.com/kannans/">Kannan Sundarajan</a> has written <a href="http://www.codeplex.com/rte">Rich Text Editor control</a> using <a href="http://ajax.asp.net/">ASP.NET AJAX</a> and shared it under the <a href="http://www.microsoft.com/resources/sharedsource/licensingbasics/publiclicense.mspx">MS-PL license</a> on CodePlex. It has a very rich feature set and Kannan hopes to enhance it further in the future. Since it is a <a href="http://www.codeplex.com/rte/">CodePlex project</a> you can report issues and make feature requests.</p>
<p>Check out the <a href="http://rteditor.members.winisp.net/">live demo</a> and see <a href="http://blogs.msdn.com/kirti/archive/2007/11/10/rich-text-editor-is-here.aspx">Kirti&#8217;s blog</a> for the full run down and some great screen shots.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ajaxnet.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ajaxnet.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajaxnet.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajaxnet.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajaxnet.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajaxnet.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajaxnet.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajaxnet.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajaxnet.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajaxnet.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajaxnet.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajaxnet.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajaxnet.wordpress.com&blog=2080507&post=6&subd=ajaxnet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajaxnet.wordpress.com/2007/11/13/cool-free-aspnet-ajax-rich-text-editor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Highslide JS .NET</title>
		<link>http://ajaxnet.wordpress.com/2007/11/08/highslide-js-net/</link>
		<comments>http://ajaxnet.wordpress.com/2007/11/08/highslide-js-net/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 10:24:19 +0000</pubDate>
		<dc:creator>tobject</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://ajaxnet.wordpress.com/2007/11/08/highslide-js-net/</guid>
		<description><![CDATA[Highslide JS .NET is a .NET control to encapsulate the functionality of Torstein Honsi’s excellent Highslide JS library.
 Highslide JS is an open source JavaScript software, offering a Web 2.0 approach to popup windows. It streamlines the use of thumbnail images and HTML popups on web pages. The library offers these features and advantages:

No plugins [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://encosia.com/downloads/highslide-js-net/"><strong>Highslide JS .NET</strong></a> is a .NET control to encapsulate the functionality of Torstein Honsi’s excellent <a href="http://vikjavev.no/highslide/">Highslide JS library</a>.</p>
<blockquote><p> Highslide JS is an open source JavaScript software, offering a Web 2.0 approach to popup windows. It streamlines the use of thumbnail images and HTML popups on web pages. The library offers these features and advantages:</p>
<ul>
<li>No plugins like Flash or Java required.</li>
<li>Popup blockers are no problem. The content expands within the active browser window.</li>
<li>Single click. After opening the image or HTML popup, the user can scroll further down     or leave the page without closing it.</li>
<li>Compatibility and safe fallback. If the user has disabled JavaScript or     the JavaScript fails in any way, the browser redirects directly to the image itself or to a fallback HTML page.     This fallback is able to cope with most exceptions and incompatibilities.</li>
</ul>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ajaxnet.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ajaxnet.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajaxnet.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajaxnet.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajaxnet.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajaxnet.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajaxnet.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajaxnet.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajaxnet.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajaxnet.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajaxnet.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajaxnet.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajaxnet.wordpress.com&blog=2080507&post=5&subd=ajaxnet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajaxnet.wordpress.com/2007/11/08/highslide-js-net/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why ASP.NET AJAX UpdatePanels are dangerous</title>
		<link>http://ajaxnet.wordpress.com/2007/11/08/why-aspnet-ajax-updatepanels-are-dangerous/</link>
		<comments>http://ajaxnet.wordpress.com/2007/11/08/why-aspnet-ajax-updatepanels-are-dangerous/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 09:57:21 +0000</pubDate>
		<dc:creator>tobject</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[JSON]]></category>

		<category><![CDATA[SOAP]]></category>

		<category><![CDATA[Update Panel]]></category>

		<guid isPermaLink="false">http://ajaxnet.wordpress.com/2007/11/08/why-aspnet-ajax-updatepanels-are-dangerous/</guid>
		<description><![CDATA[Using Web methods instead full post backs&#8230;
Web methods allow ASP.NET AJAX pages to directly execute a page’s static methods, using JSON (JavaScript Object Notation). JSON is basically a minimalistic version of SOAP, which is perfectly suited for light weight communication between client and server. For more information about how to implement web methods and JSON, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Using Web methods instead full post backs&#8230;</p>
<blockquote><p>Web methods allow ASP.NET AJAX pages to directly execute a page’s static methods, using JSON (JavaScript Object Notation). JSON is basically a minimalistic version of SOAP, which is perfectly suited for light weight communication between client and server. For more information about how to implement web methods and JSON, take a look at Microsoft’s Exposing Web Services to Client Script in ASP.NET AJAX.</p></blockquote>
<p>Full article <a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/">HERE</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ajaxnet.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ajaxnet.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajaxnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajaxnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajaxnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajaxnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajaxnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajaxnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajaxnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajaxnet.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajaxnet.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajaxnet.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajaxnet.wordpress.com&blog=2080507&post=4&subd=ajaxnet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajaxnet.wordpress.com/2007/11/08/why-aspnet-ajax-updatepanels-are-dangerous/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Are you making these 3 common ASP.NET AJAX mistakes?</title>
		<link>http://ajaxnet.wordpress.com/2007/11/08/are-you-making-these-3-common-aspnet-ajax-mistakes/</link>
		<comments>http://ajaxnet.wordpress.com/2007/11/08/are-you-making-these-3-common-aspnet-ajax-mistakes/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 09:45:06 +0000</pubDate>
		<dc:creator>tobject</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Update Panel]]></category>

		<guid isPermaLink="false">http://ajaxnet.wordpress.com/2007/11/08/are-you-making-these-3-common-aspnet-ajax-mistakes/</guid>
		<description><![CDATA[ Check out Dave Wards advice on Update Panels and Postabacks HERE
In this post, I’d like to point out a few of the problems I’ve seen developers running into and what you can keep in mind to avoid them:

Page events still fire during partial postbacks.
UpdatePanel events fire, even when not updating.
Control event handlers fire after [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> Check out Dave Wards advice on Update Panels and Postabacks <a href="http://encosia.com/2007/10/24/are-you-making-these-3-common-aspnet-ajax-mistakes/">HERE</a></p>
<blockquote><p>In this post, I’d like to point out a few of the problems I’ve seen developers running into and what you can keep in mind to avoid them:</p>
<ul>
<li>Page events still fire during partial postbacks.</li>
<li>UpdatePanel events fire, even when not updating.</li>
<li>Control event handlers fire <em>after</em> Load events.</li>
</ul>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ajaxnet.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ajaxnet.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajaxnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajaxnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajaxnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajaxnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajaxnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajaxnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajaxnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajaxnet.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajaxnet.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajaxnet.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajaxnet.wordpress.com&blog=2080507&post=3&subd=ajaxnet&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ajaxnet.wordpress.com/2007/11/08/are-you-making-these-3-common-aspnet-ajax-mistakes/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>