<?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>Saqib Ansari's World &#187; Programming</title>
	<atom:link href="http://www.saqib-ansari.com/topics/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://www.saqib-ansari.com</link>
	<description>Dream came true</description>
	<lastBuildDate>Tue, 29 Jun 2010 05:34:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Tooltip using CSS</title>
		<link>http://www.saqib-ansari.com/2010/03/tooltip-using-css.html</link>
		<comments>http://www.saqib-ansari.com/2010/03/tooltip-using-css.html#comments</comments>
		<pubDate>Wed, 31 Mar 2010 14:20:51 +0000</pubDate>
		<dc:creator>Saqib Ansari</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.saqib-ansari.com/?p=164</guid>
		<description><![CDATA[Do you want to have custom tooltip without using JavaScript in your website? Using following code you will have custom tooltip in your website. a:hover { background:#ffffff; text-decoration:none; } /*BG color is a must for IE6*/ a.customtooltip span { display: none; position: absolute; padding: 2px 3px; margin-left: 2px; } a.customtooltip:hover span { display: inline; background: [...]]]></description>
		<wfw:commentRss>http://www.saqib-ansari.com/2010/03/tooltip-using-css.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate series using T-SQL</title>
		<link>http://www.saqib-ansari.com/2010/02/generate-series-using-t-sql.html</link>
		<comments>http://www.saqib-ansari.com/2010/02/generate-series-using-t-sql.html#comments</comments>
		<pubDate>Fri, 26 Feb 2010 11:09:44 +0000</pubDate>
		<dc:creator>Saqib Ansari</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://www.saqib-ansari.com/?p=142</guid>
		<description><![CDATA[It is common developer requirement to get missing records from series. For that they generate temporary table and insert complete list of numbers and then find missing numbers using LEFT JOIN. In SQL Server 2005 and 2008, new keyword &#8220;WITH&#8221; introduced that works with SELECT, INSERT and UPDATE statement that use to create temporary resultset [...]]]></description>
		<wfw:commentRss>http://www.saqib-ansari.com/2010/02/generate-series-using-t-sql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Count Number of Words in a Sentence using ASP</title>
		<link>http://www.saqib-ansari.com/2009/10/count-number-of-words-in-a-sentence-using-asp.html</link>
		<comments>http://www.saqib-ansari.com/2009/10/count-number-of-words-in-a-sentence-using-asp.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 19:05:08 +0000</pubDate>
		<dc:creator>Saqib Ansari</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[ASP]]></category>

		<guid isPermaLink="false">http://www.saqib-ansari.com/?p=117</guid>
		<description><![CDATA[There is no function in ASP to count number of words in sentence or long string. Bellow is very simple function that count number of words and return that count. < % Function CountWords (StrValue) Dim iWords, mLengthWithSpaces, mLengthWithoutSpaces ' following line calculate the actual length of string mLengthWithSpaces = Len(StrValue) ' following line remove [...]]]></description>
		<wfw:commentRss>http://www.saqib-ansari.com/2009/10/count-number-of-words-in-a-sentence-using-asp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String.Trim() in Javascript</title>
		<link>http://www.saqib-ansari.com/2009/09/string-trim-in-javascript.html</link>
		<comments>http://www.saqib-ansari.com/2009/09/string-trim-in-javascript.html#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:44:01 +0000</pubDate>
		<dc:creator>Saqib Ansari</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Regular Expression]]></category>

		<guid isPermaLink="false">http://www.saqib-ansari.com/?p=89</guid>
		<description><![CDATA[Trim is a useful String function available in languages like Visual Basic, Java &#38; PHP which removes all leading and traling whitespaces from a String. Unfortunately Javascript does not provide Trim functionality to the String object. But there is solution using Regular Expression. Use following code in top of your Javascript file. Following code will [...]]]></description>
		<wfw:commentRss>http://www.saqib-ansari.com/2009/09/string-trim-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Date Formats</title>
		<link>http://www.saqib-ansari.com/2009/06/sql-server-date-formats.html</link>
		<comments>http://www.saqib-ansari.com/2009/06/sql-server-date-formats.html#comments</comments>
		<pubDate>Thu, 04 Jun 2009 16:23:35 +0000</pubDate>
		<dc:creator>Saqib Ansari</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.saqib-ansari.com/?p=81</guid>
		<description><![CDATA[One of the most frequently asked questions in SQL Server forums is how to format a datetime value or column into a specific date format.  Here&#8217;s a summary of the different date formats that come standard in SQL Server as part of the CONVERT function.  Following the standard date formats are some extended date formats [...]]]></description>
		<wfw:commentRss>http://www.saqib-ansari.com/2009/06/sql-server-date-formats.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
