<?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>Anupam Dutta</title>
	<atom:link href="http://anupamdutta.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://anupamdutta.wordpress.com</link>
	<description>Web Application Developer</description>
	<lastBuildDate>Thu, 17 Nov 2011 10:06:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='anupamdutta.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c6895e874d4bcf14147079da8fbd8dfa?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Anupam Dutta</title>
		<link>http://anupamdutta.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://anupamdutta.wordpress.com/osd.xml" title="Anupam Dutta" />
	<atom:link rel='hub' href='http://anupamdutta.wordpress.com/?pushpress=hub'/>
		<item>
		<title>AutoComplete From Database Using AutoCompleteExtender</title>
		<link>http://anupamdutta.wordpress.com/2010/06/13/autocomplete-from-database-using-autocompleteextender/</link>
		<comments>http://anupamdutta.wordpress.com/2010/06/13/autocomplete-from-database-using-autocompleteextender/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 12:31:23 +0000</pubDate>
		<dc:creator>Anupam</dc:creator>
				<category><![CDATA[AjaxControlToolKit]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[AutoComplete]]></category>
		<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://anupamdutta.wordpress.com/?p=190</guid>
		<description><![CDATA[To Create an AutoComplete TextBox in asp.net use following instructions: 1. Create a webmethod GetDivisionInfo public string[] GetDivisionInfo(string prefixText) { string connStr = ConfigurationManager.ConnectionStrings["DatabaseConnection"].ConnectionString; int count = 10; string sql = "Select * from Division Where vDivisionName like @prefixText"; SqlDataAdapter da = new SqlDataAdapter(sql,connStr); da.SelectCommand.Parameters.Add("@prefixText", SqlDbType.VarChar, 50).Value = prefixText+ "%"; DataTable dt = new DataTable(); &#8230; <a href="http://anupamdutta.wordpress.com/2010/06/13/autocomplete-from-database-using-autocompleteextender/">Continue reading <span class="meta-nav">&#187;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupamdutta.wordpress.com&amp;blog=2567484&amp;post=190&amp;subd=anupamdutta&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://anupamdutta.wordpress.com/2010/06/13/autocomplete-from-database-using-autocompleteextender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.102719 92.073583</georss:point>
		<geo:lat>22.102719</geo:lat>
		<geo:long>92.073583</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4a994920656d8fdc43b5e53d5ada3db2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupam</media:title>
		</media:content>
	</item>
		<item>
		<title>Password without non-alphanumeric characters</title>
		<link>http://anupamdutta.wordpress.com/2010/05/18/password-without-non-alphanumeric-characters/</link>
		<comments>http://anupamdutta.wordpress.com/2010/05/18/password-without-non-alphanumeric-characters/#comments</comments>
		<pubDate>Tue, 18 May 2010 06:53:30 +0000</pubDate>
		<dc:creator>Anupam</dc:creator>
				<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false">http://anupamdutta.wordpress.com/?p=182</guid>
		<description><![CDATA[To create a password without non-alphanumeric characters in asp.net add following code into web.config file. &#60;membership&#62; &#60;providers&#62; &#60;remove name=&#8221;AspNetSqlMembershipProvider&#8221; /&#62; &#60;add name=&#8221;AspNetSqlMembershipProvider&#8221; type=&#8221;System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&#8221; connectionStringName=&#8221;AspNetDBConnection&#8221; enablePasswordRetrieval=&#8221;false&#8221; enablePasswordReset=&#8221;true&#8221; requiresQuestionAndAnswer=&#8221;true&#8221; applicationName=&#8221;/&#8221; requiresUniqueEmail=&#8221;false&#8221; minRequiredPasswordLength=&#8221;1&#8243; minRequiredNonalphanumericCharacters=&#8221;0&#8243; passwordFormat=&#8221;Hashed&#8221; maxInvalidPasswordAttempts=&#8221;5&#8243; passwordAttemptWindow=&#8221;10&#8243; passwordStrengthRegularExpression=&#8221;" /&#62; &#60;/providers&#62; &#60;/membership&#62; Here, connectionStringName=&#8221;LocalSqlServer&#8221; &#8211; name of your ConnectionString (you&#8217;ll probably have to replace this &#8230; <a href="http://anupamdutta.wordpress.com/2010/05/18/password-without-non-alphanumeric-characters/">Continue reading <span class="meta-nav">&#187;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupamdutta.wordpress.com&amp;blog=2567484&amp;post=182&amp;subd=anupamdutta&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://anupamdutta.wordpress.com/2010/05/18/password-without-non-alphanumeric-characters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>22.333000 91.833000</georss:point>
		<geo:lat>22.333000</geo:lat>
		<geo:long>91.833000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4a994920656d8fdc43b5e53d5ada3db2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupam</media:title>
		</media:content>
	</item>
		<item>
		<title>Searching DropDownList using the ListSearchExtender Control</title>
		<link>http://anupamdutta.wordpress.com/2009/12/15/searching-dropdownlist-using-the-listsearchextender-control-using-asp-net-ajax/</link>
		<comments>http://anupamdutta.wordpress.com/2009/12/15/searching-dropdownlist-using-the-listsearchextender-control-using-asp-net-ajax/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 09:30:17 +0000</pubDate>
		<dc:creator>Anupam</dc:creator>
				<category><![CDATA[AjaxControlToolKit]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ListSearchExtender]]></category>

		<guid isPermaLink="false">http://anupamdutta.wordpress.com/?p=164</guid>
		<description><![CDATA[ListSearchExtender enables the DropDownList and ListBox to be searchable. The extender performs an incremental search within the ListBox based on what has been typed so far. Let us see how to use the ListSearchExtender control in our projects. Step 1: Add a ScriptManager to the page. Step 2: Add a DropDownList to the webform. Step &#8230; <a href="http://anupamdutta.wordpress.com/2009/12/15/searching-dropdownlist-using-the-listsearchextender-control-using-asp-net-ajax/">Continue reading <span class="meta-nav">&#187;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupamdutta.wordpress.com&amp;blog=2567484&amp;post=164&amp;subd=anupamdutta&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://anupamdutta.wordpress.com/2009/12/15/searching-dropdownlist-using-the-listsearchextender-control-using-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a994920656d8fdc43b5e53d5ada3db2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupam</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Cursor</title>
		<link>http://anupamdutta.wordpress.com/2009/03/17/sql-cursor/</link>
		<comments>http://anupamdutta.wordpress.com/2009/03/17/sql-cursor/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 06:02:58 +0000</pubDate>
		<dc:creator>Anupam</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[Cursor]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Cursor]]></category>

		<guid isPermaLink="false">http://anupamdutta.wordpress.com/?p=75</guid>
		<description><![CDATA[SQL Server is very good at handling sets of data. For example, you can use a single UPDATE statement to update many rows of data. There are times when you want to loop through a series of rows a perform processing for each row. In this case you can use a cursor. The basic syntax &#8230; <a href="http://anupamdutta.wordpress.com/2009/03/17/sql-cursor/">Continue reading <span class="meta-nav">&#187;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupamdutta.wordpress.com&amp;blog=2567484&amp;post=75&amp;subd=anupamdutta&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://anupamdutta.wordpress.com/2009/03/17/sql-cursor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a994920656d8fdc43b5e53d5ada3db2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupam</media:title>
		</media:content>
	</item>
		<item>
		<title>MS SQL Server Job</title>
		<link>http://anupamdutta.wordpress.com/2009/03/10/ms-sql-server-job/</link>
		<comments>http://anupamdutta.wordpress.com/2009/03/10/ms-sql-server-job/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 08:34:31 +0000</pubDate>
		<dc:creator>Anupam</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[MS SQL JOB]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://anupamdutta.wordpress.com/?p=24</guid>
		<description><![CDATA[A SQL Server job is a collection of steps executed by the database engine by SQL Server Agent. The job can perform many different functions within it that can save time and effort on the part of employees. Let us consider a procedure PrcDailyUpdateForecast which will be executing hourly. Minimally, it takes two or three &#8230; <a href="http://anupamdutta.wordpress.com/2009/03/10/ms-sql-server-job/">Continue reading <span class="meta-nav">&#187;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=anupamdutta.wordpress.com&amp;blog=2567484&amp;post=24&amp;subd=anupamdutta&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://anupamdutta.wordpress.com/2009/03/10/ms-sql-server-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a994920656d8fdc43b5e53d5ada3db2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupam</media:title>
		</media:content>

		<media:content url="http://anupamdutta.files.wordpress.com/2009/03/1.gif" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://anupamdutta.files.wordpress.com/2009/03/2a.gif" medium="image">
			<media:title type="html">2a1</media:title>
		</media:content>

		<media:content url="http://anupamdutta.files.wordpress.com/2009/03/2b.gif" medium="image">
			<media:title type="html">2b</media:title>
		</media:content>

		<media:content url="http://anupamdutta.files.wordpress.com/2009/03/3a.gif" medium="image">
			<media:title type="html">3a</media:title>
		</media:content>

		<media:content url="http://anupamdutta.files.wordpress.com/2009/03/3b.gif" medium="image">
			<media:title type="html">3b1</media:title>
		</media:content>

		<media:content url="http://anupamdutta.files.wordpress.com/2009/03/3c.gif" medium="image">
			<media:title type="html">3c</media:title>
		</media:content>

		<media:content url="http://anupamdutta.files.wordpress.com/2009/03/4.gif" medium="image">
			<media:title type="html">4</media:title>
		</media:content>
	</item>
	</channel>
</rss>
