<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Little Tech World</title>
	<atom:link href="http://jignesh2882.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jignesh2882.wordpress.com</link>
	<description>blog about .net, jquery and more..</description>
	<lastBuildDate>Tue, 09 Nov 2010 12:14:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jignesh2882.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0311165c12ad64be858b8dd58792e1fe?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Little Tech World</title>
		<link>http://jignesh2882.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jignesh2882.wordpress.com/osd.xml" title="Little Tech World" />
	<atom:link rel='hub' href='http://jignesh2882.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Save Mail to File using .Net web.config</title>
		<link>http://jignesh2882.wordpress.com/2010/11/09/save-mail-to-file-using-net-web-config/</link>
		<comments>http://jignesh2882.wordpress.com/2010/11/09/save-mail-to-file-using-net-web-config/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 12:03:17 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=163</guid>
		<description><![CDATA[During development, we usually have scenario where we have to send out Emails to customer or at the end of any process. In Production environment SMTP server is available but in During testing application in Development env. it&#8217;s hard to find SMTP server. So, in this situation to test send mail function how would you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=163&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/11/09/save-mail-to-file-using-net-web-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>Making HTTP request and get response without a Browser( in command line)</title>
		<link>http://jignesh2882.wordpress.com/2010/10/22/making-http-request-and-get-response-without-a-browser-in-command-line/</link>
		<comments>http://jignesh2882.wordpress.com/2010/10/22/making-http-request-and-get-response-without-a-browser-in-command-line/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 00:44:32 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Web Programming and Desinging]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=155</guid>
		<description><![CDATA[Little code snippet which allows you to access website content with minimal code. using system; using system.collection.generic; using system.linq; using system.text; using system.net; using system.io; namespace webrequest { class programm { static void main(string[] args) { WebRequest req = WebRequest.Create(http://www.microsoft.com); WebResponse resp = req.GetResponse(); StreamReader reader = new StreamReader(resp.GetResponseStream(),Encoding.ASCII); Console.WriteLine(reader.ReadToEnd(); } } }   ref: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=155&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/10/22/making-http-request-and-get-response-without-a-browser-in-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>Test Driven Development in .Net</title>
		<link>http://jignesh2882.wordpress.com/2010/10/13/test-driven-development-in-net/</link>
		<comments>http://jignesh2882.wordpress.com/2010/10/13/test-driven-development-in-net/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 23:28:37 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Mocks]]></category>
		<category><![CDATA[NUnit]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Watin]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=125</guid>
		<description><![CDATA[As part of software development life cycle developers have to create unit test to test their code before QA start testing the software. TDD (Test driven development) is one of the core practice for XP (extreme programming) Software methodology. TDD is widely adopted by java community but very less in .net programmers. But day by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=125&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/10/13/test-driven-development-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>Query DataTable using LINQ</title>
		<link>http://jignesh2882.wordpress.com/2010/09/14/query-datatable-using-linq/</link>
		<comments>http://jignesh2882.wordpress.com/2010/09/14/query-datatable-using-linq/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 05:19:15 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=115</guid>
		<description><![CDATA[I just wonder how can I access DataTable rows using LINQ. DataTable object have function called asenumerable() which returns the enumerable values of rows. And EnumeratebleRowCollection&#60;T&#62; is generic row collection which provides collection of rows Type T. so, we can do like this. DataTable employee = GetEmployeeDataTable(); EnumerableRowCollection&#60;DataRow&#62; query = from emp in employee.AsEnumerable() select [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=115&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/09/14/query-datatable-using-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8216;DropDownList1&#8242; has a SelectedValue which is invalid because it</title>
		<link>http://jignesh2882.wordpress.com/2010/04/15/dropdownlist1-has-a-selectedvalue-which-is-invalid-because-it/</link>
		<comments>http://jignesh2882.wordpress.com/2010/04/15/dropdownlist1-has-a-selectedvalue-which-is-invalid-because-it/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 05:34:57 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=113</guid>
		<description><![CDATA[Usually when you try to  use DropDown Control in GridView Control there are certain things you have be careful about. You can configure DropDownList in GridView for update any column value. To do that you can follow the step by step approach.(More) But when you are trying to fill the DropDownList with datasource which does [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=113&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/04/15/dropdownlist1-has-a-selectedvalue-which-is-invalid-because-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL SERVER TRY..CATCH</title>
		<link>http://jignesh2882.wordpress.com/2010/04/14/sql-server-try-catch/</link>
		<comments>http://jignesh2882.wordpress.com/2010/04/14/sql-server-try-catch/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 00:15:35 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Exception handling]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=109</guid>
		<description><![CDATA[In SQL Server 2000, Exception was handle by the @@error variable where after each statement SQL Server sets @@error to &#8220;0&#8243; if the statement was successful, and if not then it will filled by the error number. you can also use RAISEERROR() function to raise custom erorr when you needed. There was no mechanism such [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=109&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/04/14/sql-server-try-catch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>Learn Silverlight Easy Way</title>
		<link>http://jignesh2882.wordpress.com/2010/03/16/learn-silverlight-easy-way/</link>
		<comments>http://jignesh2882.wordpress.com/2010/03/16/learn-silverlight-easy-way/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 17:05:04 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=103</guid>
		<description><![CDATA[.Toolbox is online learning environment with step by step video tutorial for developer and Silverlight designers. Register yourself and just get started. http://www.microsoft.com/design/toolbox Download resource from http://www.microsoft.com/design/toolbox/resources/ Filed under: .Net, html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=103&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/03/16/learn-silverlight-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>

		<media:content url="/Users/ADMINI%7E1/AppData/Local/Temp/moz-screenshot.png" medium="image" />

		<media:content url="/Users/ADMINI%7E1/AppData/Local/Temp/moz-screenshot-1.png" medium="image" />
	</item>
		<item>
		<title>Multiple Modal dialog using jquery</title>
		<link>http://jignesh2882.wordpress.com/2010/03/16/multiple-model-dialog-using-jquery/</link>
		<comments>http://jignesh2882.wordpress.com/2010/03/16/multiple-model-dialog-using-jquery/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 16:47:56 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=101</guid>
		<description><![CDATA[Displying modal dialog using jqurey, sounds familier if you have used jquery before. just use the following script to display any DIV in model Dialog. &#60;script type="text/javascript"&#62; $("#DIV1").dialog({ resizable: false, height:140, modal: true, buttons: { OK: function() { $(this).dialog('close'); }, Cancel: function() { $(this).dialog('close'); } } }); but what if you want to dispaly one [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=101&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/03/16/multiple-model-dialog-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>How to manage local groups in Vista home premium?</title>
		<link>http://jignesh2882.wordpress.com/2010/02/28/how-to-manage-local-groups-in-vista-home-premium/</link>
		<comments>http://jignesh2882.wordpress.com/2010/02/28/how-to-manage-local-groups-in-vista-home-premium/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 13:05:01 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=97</guid>
		<description><![CDATA[There is problem in vista home premium, you can&#8217;t load local group snap in MMC console. And it&#8217;s very cheap from microsoft to remote the facility to control user groups from vista home premium, but there is way to manage groups using command prompt. step 1 : goto command prompt and type NET LOCALGROUP it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=97&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/02/28/how-to-manage-local-groups-in-vista-home-premium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Enable Administrator Account in Vista or windows 7 ?</title>
		<link>http://jignesh2882.wordpress.com/2010/02/28/how-to-enable-administrator-account-in-vista-or-windows-7/</link>
		<comments>http://jignesh2882.wordpress.com/2010/02/28/how-to-enable-administrator-account-in-vista-or-windows-7/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 12:53:21 +0000</pubDate>
		<dc:creator>jignesh2882</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Windows Administration]]></category>

		<guid isPermaLink="false">http://jignesh2882.wordpress.com/?p=93</guid>
		<description><![CDATA[In windows vista home premium, by default the Administrator account is disable for security purpose. But running windows on different users, you will end up with permission prompts when you try to open or install any application . Simple solution just enable Administrator account. to do so please follow the steps : step 1 : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jignesh2882.wordpress.com&amp;blog=4482967&amp;post=93&amp;subd=jignesh2882&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://jignesh2882.wordpress.com/2010/02/28/how-to-enable-administrator-account-in-vista-or-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8c6c420888fe6bfea745f2585955254?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jignesh2882</media:title>
		</media:content>

		<media:content url="http://www.howtogeek.com/wp-content/uploads/2008/01/image6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://www.howtogeek.com/wp-content/uploads/2008/01/image7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://www.howtogeek.com/wp-content/uploads/2008/01/image8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
