﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>A Programmers Journal</title>
    <link>http://www.aprogrammersjournal.com/default.aspx</link>
    <description>Last 10 articles taken from A Programmers Journal | RSS feed.</description>
    <copyright>(c) 2005, A Programmers Journal. All rights reserved.</copyright>
    <ttl>5</ttl>
    <item>
      <title>Scrolling Data Pagination Using Ajax(extjs), Json(jayrock) and Linq.</title>
      <description>Combine scrollbar events, json rpc calls and linq to create a fluid, fast and "no click" paginated data grid.</description>
      <link>http://www.aprogrammersjournal.com/id/81/Scrolling+Data+Pagination+Using+Ajax(extjs)%2c+Json(jayrock)+and+Linq.aspx</link>
      <pubDate>Thu, 03 Apr 2008 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Using Linq to paginate your ObjectDataSource.</title>
      <description>In this article I walk through an example that binds a gridview control to an ObjectDataSource and uses Linq queries to paginate to achieve true data pagination.</description>
      <link>http://www.aprogrammersjournal.com/id/80/Using+Linq+to+paginate+your+ObjectDataSource.aspx</link>
      <pubDate>Wed, 19 Mar 2008 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Building High Performance Web Applications in asp.net</title>
      <description>In Part I of Building High Performance Web Applications in asp.net I cover: General performance problems, requirements gathering, architecture, class structure and data structure.</description>
      <link>http://www.aprogrammersjournal.com/id/79/Building+High+Performance+Web+Applications+in+aspnet.aspx</link>
      <pubDate>Tue, 18 Mar 2008 02:24:19 GMT</pubDate>
    </item>
    <item>
      <title>Who's Online?: A Virtual Earth And User Session Mashup in Asp.Net.</title>
      <description>A tutorial for implementing a modal popup window on your web site which will display a Microsoft Virtual Earth map with pinpoints on the locations of everyone who is currently browsing your web site.</description>
      <link>http://www.aprogrammersjournal.com/id/75/Whos+Online+A+Virtual+Earth+And+User+Session+Mashup+in+AspNet.aspx</link>
      <pubDate>Mon, 18 Feb 2008 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Singleton Collection in VB.net</title>
      <description>In the example below the data is loaded from your database the first time it is requested and stored at the application level. This means that it all of your users will use the same data, no need for constant round trips back to the database. It also counts for the need to update and insert data, as well as the ability to reload your data as need be.</description>
      <link>http://www.aprogrammersjournal.com/id/74/Singleton+Collection+in+VBnet.aspx</link>
      <pubDate>Sun, 17 Feb 2008 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Search Your Site Using Windows Live Search (Part II)</title>
      <description>An Update to my original article which allows you to search your personal web site using Windows Live Search. </description>
      <link>http://www.aprogrammersjournal.com/id/72/Search+Your+Site+Using+Windows+Live+Search+(Part+II).aspx</link>
      <pubDate>Tue, 12 Feb 2008 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Generic Object Tree For Synapse Controlled Relations</title>
      <description>I came up with a concept of building a tree and allowing each branch of the tree to associate to any object, a user could build trees by dragging and dropping on item onto another or the operating system could build trees based on certain things a user had done.</description>
      <link>http://www.aprogrammersjournal.com/id/71/Generic+Object+Tree+For+Synapse+Controlled+Relations.aspx</link>
      <pubDate>Sun, 10 Feb 2008 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Using ROW_NUMBER() to paginate your data with SQL Server 2005 and asp.net c#</title>
      <description>With the release of SQL Server 2005 Microsoft introduces the long overdue ROW_NUMBER() function to solve this problem. In this article we will walk through a C# implementation of pagination using the ROW_NUMBER() method.</description>
      <link>http://www.aprogrammersjournal.com/id/67/Using+ROW_NUMBER()+to+paginate+your+data+with+SQL+Server+2005+and+aspnet+c%23.aspx</link>
      <pubDate>Sun, 20 Nov 2005 14:22:04 GMT</pubDate>
    </item>
    <item>
      <title>Using DFS to distribute your web application over your network: A Step By Step Guide.</title>
      <description>Often times you will find yourself in a situation where you wish to place resources for your web application on different servers on your network. Some common implemenations could be a file server that stores images or an application server that houses static files or xml content. This can be accomplished fairly easily using DFS.</description>
      <link>http://www.aprogrammersjournal.com/id/66/Using+DFS+to+distribute+your+web+application+over+your+network+A+Step+By+Step+Guide.aspx</link>
      <pubDate>Sat, 12 Nov 2005 17:28:37 GMT</pubDate>
    </item>
    <item>
      <title>Dynamically populating city and state from zip codes using AJAX and asp.net web services</title>
      <description>In the example below will investigate building a form that auto completes the city and state information after the user types in their zip code. There are two essential parts to this project. First being the creation of a web service that will return a city and state given its zip code. And the second, a HTML page that uses javascript to request the XML from the web service. </description>
      <link>http://www.aprogrammersjournal.com/id/65/Dynamically+populating+city+and+state+from+zip+codes+using+AJAX+and+aspnet+web+services.aspx</link>
      <pubDate>Wed, 27 Jul 2005 23:11:38 GMT</pubDate>
    </item>
    <item>
      <title>A first look: SQL SERVER 2005</title>
      <description>After evaluating the server for only a day I must say that I am extremely impressed. As a developer the user interface is so much easier to work in. They have centralized most objects in to one management studio. Also I was extremely impressed with the large number of new features available. Though I have not really had time to really evaluate all of the new features from what I have seen they should make my life allot more organized and speed up my queries.</description>
      <link>http://www.aprogrammersjournal.com/id/64/A+first+look+SQL+SERVER+2005.aspx</link>
      <pubDate>Tue, 12 Jul 2005 22:34:53 GMT</pubDate>
    </item>
    <item>
      <title>Search Your Site Using MSN Search</title>
      <description>In the example below I am building the query string on the fly with the searchstring typed in my web form. I then parse the Rss feed with a xsl style sheet and display the results. The pagination is accomplished by passing parameters to the XSL file and handling the pagination within the xsl. To view this example click the link below.</description>
      <link>http://www.aprogrammersjournal.com/id/63/Search+Your+Site+Using+MSN+Search.aspx</link>
      <pubDate>Tue, 07 Jun 2005 01:37:27 GMT</pubDate>
    </item>
    <item>
      <title>Using SQL Bulk Load to import XML</title>
      <description>Importing very large XML files into SQL server can be taxing for standard methods. Thats where SQL Bulk load comes in very handy, Bulk load can load a 100 meg XML File into a SQL Server table in a matter of seconds. Using the microsoft standard xml parser in your application could leave you hanging could leave you hanging for over 10 minutes with a file this size.</description>
      <link>http://www.aprogrammersjournal.com/id/62/Using+SQL+Bulk+Load+to+import+XML.aspx</link>
      <pubDate>Sat, 28 May 2005 21:41:37 GMT</pubDate>
    </item>
    <item>
      <title>Syndicating your google group.</title>
      <description>Making content from your google group available on your own website is easy to implement using asp.net.</description>
      <link>http://www.aprogrammersjournal.com/id/61/Syndicating+your+google+group.aspx</link>
      <pubDate>Fri, 01 Apr 2005 03:45:43 GMT</pubDate>
    </item>
    <item>
      <title>Output Caching and VaryByParam, VaryByCustom</title>
      <description>ASP.net offers a solution to our problem, output caching. By just implementing a simple tag the entire content of your page gets cached as html to main memory on your web server. </description>
      <link>http://www.aprogrammersjournal.com/id/58/Output+Caching+and+VaryByParam%2c+VaryByCustom.aspx</link>
      <pubDate>Fri, 14 Jan 2005 00:34:36 GMT</pubDate>
    </item>
    <item>
      <title>Syndicating Neowin Headlines in ASP.net</title>
      <description>ASP.net makes it very easy to syndicate an RSS feed. In this article we will review syndicating the neowin rss feed located at : http://www.neowin.net/backend.php</description>
      <link>http://www.aprogrammersjournal.com/id/54/Syndicating+Neowin+Headlines+in+ASPnet.aspx</link>
      <pubDate>Sun, 12 Dec 2004 22:44:29 GMT</pubDate>
    </item>
    <item>
      <title>Developing XHTML compliant code with ASP.NET</title>
      <description>I decided to develop my first strict standards/CSS based web site in asp.netr. After pulling my hair out (it can be hard to teach an old dog new tricks) developing my standards based layout you can imagine how perturbed I was when I put in my asp.net controls and they produced non compliant code. So began my search for a solution.</description>
      <link>http://www.aprogrammersjournal.com/id/46/Developing+XHTML+compliant+code+with+ASPNET.aspx</link>
      <pubDate>Mon, 06 Dec 2004 22:31:46 GMT</pubDate>
    </item>
    <item>
      <title>TREE VIEW - ASP.NET </title>
      <description>ASP.NET 2.0 introduces a new control named TreeView that provides a seamless way to consume information from hierarchical data sources such as an XML file and then display that information. You can use the TreeView control to display information from a wide variety of data sources such as an XML file, site-map file, string, or from a database. </description>
      <link>http://www.aprogrammersjournal.com/id/36/TREE+VIEW+-+ASPNET+.aspx</link>
      <pubDate>Sun, 05 Dec 2004 21:59:54 GMT</pubDate>
    </item>
    <item>
      <title>Hello world</title>
      <description>Hello world</description>
      <link>http://www.aprogrammersjournal.com/id/30/Hello+world.aspx</link>
      <pubDate>Sun, 05 Dec 2004 11:11:36 GMT</pubDate>
    </item>
  </channel>
</rss>