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

<channel>
	<title>Dot Net Learning Zone Blog</title>
	<atom:link href="http://dotnethacker.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dotnethacker.wordpress.com</link>
	<description>A blog about to learn Dot Net</description>
	<lastBuildDate>Tue, 10 Mar 2009 10:18:24 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dotnethacker.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bd73af5c5d7f80b4297a4a7888c59e8e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Dot Net Learning Zone Blog</title>
		<link>http://dotnethacker.wordpress.com</link>
	</image>
			<item>
		<title>Regular Expression for Alphanumeric, float and Max Length in Multi Line</title>
		<link>http://dotnethacker.wordpress.com/2009/03/10/regular-expression-for-alphanumeric-float-and-max-length-in-multi-line/</link>
		<comments>http://dotnethacker.wordpress.com/2009/03/10/regular-expression-for-alphanumeric-float-and-max-length-in-multi-line/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 10:18:24 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[Regular Expression]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=48</guid>
		<description><![CDATA[Alphanumeric with White space                                                  :- ^[a-zA-Z0-9 ]+$
For Float  length of integer part 9 and fraction part 4        :-  ([0-9]{1,8}(\.[0-9]{0,4})?&#124;\.[0-9]{1,4})
Max Lenght  in MultiLine TExt BOX                                            :-  &#8220;^.{0,255}$&#8221;
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=48&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Alphanumeric with White space                                                  :- ^[a-zA-Z0-9 ]+$<br />
For Float  length of integer part 9 and fraction part 4        :-  ([0-9]{1,8}(\.[0-9]{0,4})?|\.[0-9]{1,4})<br />
Max Lenght  in MultiLine TExt BOX                                            :-  &#8220;^.{0,255}$&#8221;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=48&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2009/03/10/regular-expression-for-alphanumeric-float-and-max-length-in-multi-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>How to get value using SP_EXECUTESQL</title>
		<link>http://dotnethacker.wordpress.com/2009/03/10/how-to-get-value-using-sp_executesql/</link>
		<comments>http://dotnethacker.wordpress.com/2009/03/10/how-to-get-value-using-sp_executesql/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 08:09:46 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Question]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=46</guid>
		<description><![CDATA[DECLARE @Name varchar(50)
DECLARE @Query nvarchar(200)
DECLARE @ParmDefinition NVARCHAR(500)
SET @Query =&#8217;Select  @Name=CompanyName  from CompanyDetail&#8217;
SET @ParmDefinition = N&#8217;@Name varchar(50) OUTPUT&#8217;
EXEC SP_EXECUTESQL @Query,@ParmDefinition,@Name=@Name OUTPUT
SELECT @Name
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=46&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>DECLARE @Name varchar(50)<br />
DECLARE @Query nvarchar(200)<br />
DECLARE @ParmDefinition NVARCHAR(500)<br />
SET @Query =&#8217;Select  @Name=CompanyName  from CompanyDetail&#8217;<br />
SET @ParmDefinition = N&#8217;@Name varchar(50) OUTPUT&#8217;<br />
EXEC SP_EXECUTESQL @Query,@ParmDefinition,@Name=@Name OUTPUT<br />
SELECT @Name</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=46&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2009/03/10/how-to-get-value-using-sp_executesql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Pass Value from Parent to Child popup  and Child popup to Parent in ASP.net</title>
		<link>http://dotnethacker.wordpress.com/2009/03/10/how-to-pass-value-from-parent-to-child-popup-and-child-popup-to-parent-in-aspnet/</link>
		<comments>http://dotnethacker.wordpress.com/2009/03/10/how-to-pass-value-from-parent-to-child-popup-and-child-popup-to-parent-in-aspnet/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 07:22:11 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[ASP.net2.0]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Java Script]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=43</guid>
		<description><![CDATA[I have created two pages &#8211; Parent.aspx and Child.aspx
Parent.aspx:-
&#60;%@ Page Language=&#8221;C#&#8221; AutoEventWireup=&#8221;true&#8221; CodeFile=&#8221;Parent.aspx.cs&#8221; Inherits=&#8221;_Default&#8221; %&#62;
&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62;
&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&#62;
&#60;head runat=&#8221;server&#8221;&#62;
&#60;title&#62;Untitled Page&#60;/title&#62;
&#60;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&#62;
function OpenPopUP()
{
window.open (&#8216;Child.aspx&#8217;,'Child&#8217;,'toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=320x,height=350px,top=200px,left=100px&#8217;);
return false;
}
&#60;/script&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&#62;
&#60;div&#62;
&#60;table&#62;
&#60;tr&#62;
&#60;td&#62;
Name
&#60;/td&#62;
&#60;td&#62;
&#60;asp:TextBox ID=&#8221;txtName&#8221; runat=&#8221;server&#8221; Text=&#8221;"&#62;&#60;/asp:TextBox&#62;
&#60;/td&#62;
&#60;td&#62;
&#60;asp:Button ID=&#8221;btnSearch&#8221; runat=&#8221;server&#8221; Text=&#8221;Search&#8221; OnClientClick=&#8221;OpenPopUP();&#8221; /&#62;
&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;/div&#62;
&#60;/form&#62;
&#60;/body&#62;
&#60;/html&#62;
Child.aspx :-
&#60;%@ Page Language=&#8221;C#&#8221; AutoEventWireup=&#8221;true&#8221; CodeFile=&#8221;Child.aspx.cs&#8221; Inherits=&#8221;Child&#8221; %&#62;
&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62;
&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&#62;
&#60;head [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=43&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have created two pages &#8211; Parent.aspx and Child.aspx</p>
<p>Parent.aspx:-</p>
<p>&lt;%@ Page Language=&#8221;C#&#8221; AutoEventWireup=&#8221;true&#8221; CodeFile=&#8221;Parent.aspx.cs&#8221; Inherits=&#8221;_Default&#8221; %&gt;</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;<br />
&lt;head runat=&#8221;server&#8221;&gt;<br />
&lt;title&gt;Untitled Page&lt;/title&gt;</p>
<p>&lt;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&gt;<br />
function OpenPopUP()<br />
{<br />
window.open (&#8216;Child.aspx&#8217;,'Child&#8217;,'toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=320x,height=350px,top=200px,left=100px&#8217;);<br />
return false;<br />
}</p>
<p>&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;div&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
Name<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;asp:TextBox ID=&#8221;txtName&#8221; runat=&#8221;server&#8221; Text=&#8221;"&gt;&lt;/asp:TextBox&gt;<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;asp:Button ID=&#8221;btnSearch&#8221; runat=&#8221;server&#8221; Text=&#8221;Search&#8221; OnClientClick=&#8221;OpenPopUP();&#8221; /&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>Child.aspx :-</p>
<p>&lt;%@ Page Language=&#8221;C#&#8221; AutoEventWireup=&#8221;true&#8221; CodeFile=&#8221;Child.aspx.cs&#8221; Inherits=&#8221;Child&#8221; %&gt;</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;<br />
&lt;head runat=&#8221;server&#8221;&gt;<br />
&lt;title&gt;Untitled Page&lt;/title&gt;</p>
<p>&lt;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&gt;<br />
function ValuePatentToChild()<br />
{<br />
var Name =  window.opener.document.forms[0].txtName.value;<br />
var setName =  document.getElementById (&#8216;txtChild&#8217;);<br />
setName.value =  Name;</p>
<p>}</p>
<p>function ValueChildToParent()<br />
{<br />
var Name =  document.getElementById (&#8216;txtChild&#8217;).value;<br />
window.opener.document.forms[0].txtName.value =  Name;<br />
self.close();<br />
}</p>
<p>&lt;/script&gt;</p>
<p>&lt;/head&gt;<br />
&lt;body onload=&#8221;ValuePatentToChild();&#8221;&gt;<br />
&lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;div&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
&lt;asp:TextBox ID=&#8221;txtChild&#8221; runat=&#8221;server&#8221; Text=&#8221;"&gt;&lt;/asp:TextBox&gt;<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;asp:Button ID=&#8221;btnClose&#8221; runat=&#8221;server&#8221; Text=&#8221;Close&#8221; OnClientClick=&#8221;ValueChildToParent();&#8221; /&gt;<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=43&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2009/03/10/how-to-pass-value-from-parent-to-child-popup-and-child-popup-to-parent-in-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>How to count week in month</title>
		<link>http://dotnethacker.wordpress.com/2009/02/05/how-to-count-week-in-month/</link>
		<comments>http://dotnethacker.wordpress.com/2009/02/05/how-to-count-week-in-month/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:26:39 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=40</guid>
		<description><![CDATA[  public int GetWeekInMonth(int year, int month)
        {
            CultureInfo cinfo = CultureInfo.CurrentCulture;
            Calendar MyCal = CultureInfo.InvariantCulture.Calendar;
            int CountWeek = 0;
            for (int icount = 1; icount &#60; cinfo.Calendar.GetDaysInMonth(year, month); icount++)
            {
                string str = Convert.ToString(MyCal.GetDayOfWeek(new DateTime(year, month, icount)));
                if (str.Equals(&#8220;Monday&#8221;, StringComparison.OrdinalIgnoreCase))
                {
                    CountWeek = CountWeek + 1;
                }
 
            }
            return CountWeek;
        }
 
 
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=40&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>  p</span><span style="color:blue;">ublic </span><span style="color:blue;">int</span> GetWeekInMonth(<span style="color:blue;">int</span> year, <span style="color:blue;">int</span> month)</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>        </span>{</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>            </span><span style="color:#2b91af;">CultureInfo</span> cinfo = <span style="color:#2b91af;">CultureInfo</span>.CurrentCulture;</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>            </span><span style="color:#2b91af;">Calendar</span> MyCal = <span style="color:#2b91af;">CultureInfo</span>.InvariantCulture.Calendar;</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>            </span><span style="color:blue;">int</span> CountWeek = 0;</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>            </span><span style="color:blue;">for</span> (<span style="color:blue;">int</span> icount = 1; icount &lt; cinfo.Calendar.GetDaysInMonth(year, month); icount++)</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>            </span>{</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>                </span><span style="color:blue;">string</span> str = <span style="color:#2b91af;">Convert</span>.ToString(MyCal.GetDayOfWeek(<span style="color:blue;">new</span> <span style="color:#2b91af;">DateTime</span>(year, month, icount)));</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>                </span><span style="color:blue;">if</span> (str.Equals(<span style="color:#a31515;">&#8220;Monday&#8221;</span>, <span style="color:#2b91af;">StringComparison</span>.OrdinalIgnoreCase))</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>                </span>{</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>                    </span>CountWeek = CountWeek + 1;</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>                </span>}</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>            </span>}</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>            </span><span style="color:blue;">return</span> CountWeek;</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"><span>        </span>}</span></p>
<p class="MsoNormal" style="text-indent:0;margin:0;"><span style="font-size:10pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="margin:0 0 10pt .5in;"><span style="font-size:small;font-family:Calibri;"> </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=40&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2009/02/05/how-to-count-week-in-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>How to create Web Setup Project in Visual studio 2005/2008</title>
		<link>http://dotnethacker.wordpress.com/2009/02/05/how-to-create-web-setup-project-in-visual-studio-20052008/</link>
		<comments>http://dotnethacker.wordpress.com/2009/02/05/how-to-create-web-setup-project-in-visual-studio-20052008/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 17:24:31 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[ASP.net2.0]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=37</guid>
		<description><![CDATA[Steps:
1.      Create new ASP.NET Web Site
a.      File-&#62;Add New Web Site-&#62;, Select ASP.net Web Site from template  and choose location file type or http
2.      Right click on website and then add Web Deployment project (WebSite1_deploy”)
If Web Deployment project is not display in IDE then download from http://msdn.microsoft.com/en-us/asp.net/aa336619.aspx  for visual studio 2005 and  http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=0aa30ae8-c73b-4bdd-bb1b-fe697256c459&#38;displaylang=en for visual studio [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=37&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2 style="margin:auto 0;"><span style="font-size:11pt;"><span style="font-family:Times New Roman;">Steps:</span></span></h2>
<h2 style="text-indent:-.25in;margin:auto 0 auto .5in;"><span style="font-family:Times New Roman;"><span style="font-size:11pt;"><span>1.<span style="font:7pt 'Times New Roman';">      </span></span></span><span style="font-weight:normal;font-size:11pt;">Create new ASP.NET Web Site</span></span></h2>
<h2 style="text-indent:-.25in;margin:auto 0 auto 1in;"><span style="font-family:Times New Roman;"><span style="font-size:11pt;"><span>a.<span style="font:7pt 'Times New Roman';">      </span></span></span><span style="font-weight:normal;font-size:11pt;">File-&gt;Add New Web Site-&gt;, Select ASP.net Web Site from template <span> </span>and choose location file type or http</span></span></h2>
<h2 style="text-indent:-.25in;margin:auto 0 auto .5in;"><span style="font-family:Times New Roman;"><span style="font-weight:normal;font-size:11pt;"><span>2.<span style="font:7pt 'Times New Roman';">      </span></span></span><span style="font-weight:normal;font-size:11pt;">Right click on website and then add Web Deployment project (WebSite1_deploy”)</span></span></h2>
<h2 style="margin:auto 0 auto .5in;"><span style="font-weight:normal;font-size:11pt;"><span style="font-family:Times New Roman;">If Web Deployment project is not display in IDE then download from </span><a href="http://msdn.microsoft.com/en-us/asp.net/aa336619.aspx"><span style="color:#0000ff;font-family:Times New Roman;">http://msdn.microsoft.com/en-us/asp.net/aa336619.aspx</span></a><span style="font-family:Times New Roman;"><span>  </span>for visual studio 2005 and<span>  </span></span><a href="http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=0aa30ae8-c73b-4bdd-bb1b-fe697256c459&amp;displaylang=en"><span style="color:#0000ff;font-family:Times New Roman;">http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=0aa30ae8-c73b-4bdd-bb1b-fe697256c459&amp;displaylang=en</span></a><span style="font-family:Times New Roman;"> for visual studio 2008 .Install Web Deployment project and then restart your visual studio IDE. Then you can see Web Deployment project  in Build menu &#8220;Add Web Deployment Project&#8221;.</span></span></h2>
<h2 style="text-indent:-.25in;margin:auto 0 auto .5in;"><span style="font-family:Times New Roman;"><span style="font-weight:normal;font-size:11pt;"><span>3.<span style="font:7pt 'Times New Roman';">      </span></span></span><span style="font-weight:normal;font-size:11pt;">Right click on WebSite1_deploy then click on Build</span></span></h2>
<h2 style="margin:auto 0 auto 1in;"><span style="font-weight:normal;font-size:11pt;"><span style="font-family:Times New Roman;">After successful build </span></span></h2>
<h2 style="text-indent:-.25in;margin:auto 0 auto .5in;"><span style="font-family:Times New Roman;"><span style="font-weight:normal;font-size:11pt;"><span>4.<span style="font:7pt 'Times New Roman';">      </span></span></span><span style="font-weight:normal;font-size:11pt;">Add new web setup project in solution, assume project name is “WebSetup1”.Then right click on WebSetup1 and click on Add and select project output. In Project, select website1_deploy and then click on OK ..Now the final step is to build WebSetup1 .After successful build .msi file is created. Now you can install .msi file.</span></span></h2>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=37&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2009/02/05/how-to-create-web-setup-project-in-visual-studio-20052008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>Download MCTS Framwork2.0 books</title>
		<link>http://dotnethacker.wordpress.com/2008/08/14/download-mcts-framwork20-books/</link>
		<comments>http://dotnethacker.wordpress.com/2008/08/14/download-mcts-framwork20-books/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 02:05:38 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[Download]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[ramwork2.0]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=29</guid>
		<description><![CDATA[ Dot Net Framework 
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=29&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.driveway.com/i1x7a2i&lt;/a&gt;6u3"> Dot Net Framework </a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotnethacker.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotnethacker.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=29&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2008/08/14/download-mcts-framwork20-books/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>Project Configuration in Microsoft Visual Source Safe (VSS)</title>
		<link>http://dotnethacker.wordpress.com/2008/08/14/project-configuration-in-microsoft-visual-source-safe-vss/</link>
		<comments>http://dotnethacker.wordpress.com/2008/08/14/project-configuration-in-microsoft-visual-source-safe-vss/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 02:01:00 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[VSS]]></category>
		<category><![CDATA[Microsoft Visual Source Safe]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=25</guid>
		<description><![CDATA[Please follow these steps:




Configuration of   VSS








It sounds like   you are working with source safe through your development tool. Try the   following:





Step 1: Created a blank   solution called DotNetNuke.Sln and save it to a directory.


Step 2: Close your development   tool.


Step 3: Open &#8220;Microsoft   Visual [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=25&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Please follow these steps:</p>
<table style="border-collapse:collapse;width:424pt;" border="0" cellspacing="0" cellpadding="0" width="565">
<col style="width:424pt;" width="565"></col>
<tbody>
<tr style="height:15pt;">
<td style="height:15pt;width:424pt;" width="565" height="20">Configuration of   VSS</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl65" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">It sounds like   you are working with source safe through your development tool. Try the   following:</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 1: Created a blank   solution called DotNetNuke.Sln and save it to a directory.</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 2: Close your development   tool.</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 3: Open &#8220;Microsoft   Visual SourceSafe 6.0&#8243;</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 4: File -&gt; Create   Project &#8230;</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 5: Fill in the Project   name and comment</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 6: Move the blue   highlight to the new project</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 7: File -&gt; Add Files   &#8230;</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 8: Browse to the files   you want to add, select them and click add.</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 9: Check the files out to   yourself</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 10: Close source safe</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 11: Open your development   tool and add the code you want to add.</td>
</tr>
<tr style="height:15pt;">
<td class="xl65" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl65" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">&#8212;- When done &#8212;</td>
</tr>
<tr style="height:15pt;">
<td class="xl65" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 12: Save your work</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 13: Open &#8220;Microsoft   Visual SourceSafe 6.0&#8243;</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 14: Move the blue   highlight to your project</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 15: Select the file(s) in   the right pane</td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">Step 16: SourceSafe -&gt;   Check In &#8230;</td>
</tr>
<tr style="height:15pt;">
<td class="xl65" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl65" style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl66" style="height:15pt;" height="20">I think you may find this   useful</td>
</tr>
<tr style="height:15pt;">
<td class="xl64" style="height:15pt;" height="20"><a href="http://oldlook.experts-exchange.com:8080/Programming/Q_20867690.html">http://oldlook.experts-exchange.com:8080/Programming/Q_20867690.html</a></td>
</tr>
<tr style="height:15pt;">
<td style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td style="height:15pt;" height="20"></td>
</tr>
<tr style="height:15pt;">
<td class="xl64" style="height:15pt;" height="20"><a href="http://www.experts-exchange.com/Programming/Processor_Platforms/Q_21314581.html">http://www.experts-exchange.com/Programming/Processor_Platforms/Q_21314581.html</a></td>
</tr>
</tbody>
</table>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotnethacker.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotnethacker.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=25&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2008/08/14/project-configuration-in-microsoft-visual-source-safe-vss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>access the data of Gridview in Rowcommand</title>
		<link>http://dotnethacker.wordpress.com/2008/08/11/access-the-data-of-gridview-in-rowcommand/</link>
		<comments>http://dotnethacker.wordpress.com/2008/08/11/access-the-data-of-gridview-in-rowcommand/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 05:20:11 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[ASP.net2.0]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=21</guid>
		<description><![CDATA[Please visit this site
http://weblogs.asp.net/hpreishuber/archive/2005/08/05/421712.aspx
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=21&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Please visit this site</p>
<p><a href="http://weblogs.asp.net/hpreishuber/archive/2005/08/05/421712.aspx">http://weblogs.asp.net/hpreishuber/archive/2005/08/05/421712.aspx</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotnethacker.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotnethacker.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=21&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2008/08/11/access-the-data-of-gridview-in-rowcommand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>Find duplicate row in table in SQL</title>
		<link>http://dotnethacker.wordpress.com/2008/05/27/find-duplicate-row-in-table-in-sql/</link>
		<comments>http://dotnethacker.wordpress.com/2008/05/27/find-duplicate-row-in-table-in-sql/#comments</comments>
		<pubDate>Tue, 27 May 2008 12:12:15 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[SQL Question]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=20</guid>
		<description><![CDATA[1. Create Table
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[tbl_Test](
 [Id] [int] NULL,
 [Name] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
 
GO
SET ANSI_PADDING OFF

2. Insert Record
INSERT INTO [Test].[dbo].[tbl_Test]([Id] ,[Name]) VALUES (1,&#8216;a&#8217;)
INSERT INTO [Test].[dbo].[tbl_Test]([Id] ,[Name]) VALUES (2,&#8216;b&#8217;)
INSERT INTO [Test].[dbo].[tbl_Test]([Id] ,[Name]) VALUES (3,&#8216;c&#8217;)
INSERT INTO [Test].[dbo].[tbl_Test]([Id] ,[Name]) VALUES (1,&#8216;a&#8217;)
INSERT INTO [Test].[dbo].[tbl_Test]([Id] ,[Name]) VALUES (3,&#8216;c&#8217;)
INSERT INTO [Test].[dbo].[tbl_Test]([Id] ,[Name]) VALUES [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=20&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoListParagraph" style="text-indent:-0.25in;"><!--[if !supportLists]--><span><span>1.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]-->Create Table</p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">SET</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">ANSI_NULLS</span> <span style="color:blue;">ON</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;">GO</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">SET</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">QUOTED_IDENTIFIER</span> <span style="color:blue;">ON</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;">GO</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">SET</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">ANSI_PADDING</span> <span style="color:blue;">ON</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;">GO</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">CREATE</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">TABLE</span> [dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span>[Id] [int] <span style="color:gray;">NULL,</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"><span> </span>[Name] [varchar]<span style="color:gray;">(</span>50<span style="color:gray;">)</span> <span style="color:blue;">COLLATE</span> SQL_Latin1_General_CP1_CI_AS <span style="color:gray;">NULL</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:gray;">)</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">ON</span> [PRIMARY]</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;">GO</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">SET</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">ANSI_PADDING</span> <span style="color:blue;">OFF</span></span></p>
<p class="MsoListParagraphCxSpFirst">
<p class="MsoListParagraphCxSpLast" style="text-indent:-0.25in;"><!--[if !supportLists]--><span><span>2.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]-->Insert Record</p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>1<span style="color:gray;">,</span><span style="color:red;">&#8216;a&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>2<span style="color:gray;">,</span><span style="color:red;">&#8216;b&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>3<span style="color:gray;">,</span><span style="color:red;">&#8216;c&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>1<span style="color:gray;">,</span><span style="color:red;">&#8216;a&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>3<span style="color:gray;">,</span><span style="color:red;">&#8216;c&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>4<span style="color:gray;">,</span><span style="color:red;">&#8216;m&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>5<span style="color:gray;">,</span><span style="color:red;">&#8216;p&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>4<span style="color:gray;">,</span><span style="color:red;">&#8216;m&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>6<span style="color:gray;">,</span><span style="color:red;">&#8216;d&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>7<span style="color:gray;">,</span><span style="color:red;">&#8216;y&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>8<span style="color:gray;">,</span><span style="color:red;">&#8216;o&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">INSERT</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:blue;">INTO</span> [Test]<span style="color:gray;">.</span>[dbo]<span style="color:gray;">.</span>[tbl_Test]<span style="color:gray;">(</span>[Id] <span style="color:gray;">,</span>[Name]<span style="color:gray;">)</span> <span style="color:blue;">VALUES</span><span> </span><span style="color:gray;">(</span>9<span style="color:gray;">,</span><span style="color:red;">&#8216;f&#8217;</span><span style="color:gray;">)</span></span></p>
<p class="MsoListParagraphCxSpFirst">
<p class="MsoListParagraphCxSpLast" style="text-indent:-0.25in;"><!--[if !supportLists]--><span><span>3.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]-->Find the duplicate record <span> </span>on the basis on Name field</p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.5in;"><span style="font-size:10pt;font-family:&quot;color:blue;">1)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.5in;"><span style="font-size:10pt;font-family:&quot;color:blue;">SELECT</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">DISTINCT</span> <span style="color:gray;">*</span> <span style="color:blue;">FROM</span><span> </span>dbo<span style="color:gray;">.</span>tbl_Test A</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.5in;"><span style="font-size:10pt;font-family:&quot;color:blue;">WHERE</span><span style="font-size:10pt;font-family:&quot;"> 1<span style="color:gray;">&lt;(</span><span style="color:blue;">SELECT</span> <span style="color:fuchsia;">COUNT</span><span style="color:gray;">(*)</span> <span style="color:blue;">FROM</span> tbl_Test B</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.5in;"><span style="font-size:10pt;font-family:&quot;color:blue;">WHERE</span><span style="font-size:10pt;font-family:&quot;"> A<span style="color:gray;">.</span><span style="color:blue;">nAME</span><span style="color:gray;">=</span>B<span style="color:gray;">.</span><span style="color:blue;">NAME</span><span style="color:gray;">)</span><span style="color:blue;">ORDER</span> <span style="color:blue;">BY</span> A<span style="color:gray;">.</span><span style="color:blue;">NAME</span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;font-family:&quot;color:blue;"> </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.5in;"><span style="font-size:10pt;font-family:&quot;color:blue;">2)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.5in;"><span style="font-size:10pt;font-family:&quot;color:blue;">SELECT</span><span style="font-size:10pt;font-family:&quot;"> ID<span style="color:gray;">,</span> <span style="color:blue;">NAME</span><span> </span><span style="color:blue;">FROM</span><span> </span>dbo<span style="color:gray;">.</span>tbl_Test</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.5in;"><span style="font-size:10pt;font-family:&quot;color:blue;">GROUP</span><span style="font-size:10pt;font-family:&quot;"> <span style="color:blue;">BY</span> <span style="color:blue;">NAME</span><span style="color:gray;">,</span>ID </span></p>
<p class="MsoListParagraph" style="margin-left:1in;"><span style="font-size:10pt;line-height:115%;font-family:&quot;color:blue;">HAVING</span><span style="font-size:10pt;line-height:115%;font-family:&quot;"> <span style="color:fuchsia;">COUNT</span><span style="color:gray;">(*)&gt;</span>1</span></p>
<p class="MsoNormal"><strong><span style="font-size:12pt;line-height:115%;"> </span></strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotnethacker.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotnethacker.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=20&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2008/05/27/find-duplicate-row-in-table-in-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
		<item>
		<title>How to find assembly has assigned strong name or not?</title>
		<link>http://dotnethacker.wordpress.com/2008/05/10/how-to-find-assembly-has-assigned-strong-name-or-not/</link>
		<comments>http://dotnethacker.wordpress.com/2008/05/10/how-to-find-assembly-has-assigned-strong-name-or-not/#comments</comments>
		<pubDate>Sat, 10 May 2008 12:51:48 +0000</pubDate>
		<dc:creator>Rajesh</dc:creator>
				<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://dotnethacker.wordpress.com/?p=19</guid>
		<description><![CDATA[The Assembly Name object contains information about an assembly, which you can use to bind to that assembly.

AssemblyName asName = null;
 asName = AssemblyName.GetAssemblyName(“Path of Assembly”);
 
 if (asName.GetPublicKey() != null)
 {
 Console.Write(&#8220;Assembly has assigned strong name&#8221;);
 }
 else
 {
 Console.Write(&#8220;Assembly has not assigned strong name&#8221;);
 }
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=19&subd=dotnethacker&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="margin-left:1in;">The Assembly Name object contains information about an assembly, which you can use to bind to that assembly.</p>
<p class="MsoNormal" style="margin-left:1in;">
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;">AssemblyName</span><span style="font-size:10pt;"> asName = <span style="color:blue;">null</span>;</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span>asName = <span style="color:#2b91af;">AssemblyName</span>.GetAssemblyName(“Path of Assembly”);</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"> </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span><span style="color:blue;">if</span> (asName.GetPublicKey() != <span style="color:blue;">null</span>)</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span>{</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span><span style="color:#2b91af;">Console</span>.Write(<span style="color:#a31515;">&#8220;Assembly has assigned strong name&#8221;</span>);</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span>}</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span><span style="color:blue;">else</span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span>{</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;"><span> </span><span style="color:#2b91af;">Console</span>.Write(<span style="color:#a31515;">&#8220;Assembly has not<span> </span>assigned strong name&#8221;</span>);</span></p>
<p class="MsoNormal" style="margin-left:1.75in;"><span style="font-size:10pt;line-height:115%;"><span> </span>}</span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dotnethacker.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dotnethacker.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dotnethacker.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dotnethacker.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dotnethacker.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dotnethacker.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dotnethacker.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dotnethacker.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dotnethacker.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dotnethacker.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dotnethacker.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dotnethacker.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dotnethacker.wordpress.com&blog=1463994&post=19&subd=dotnethacker&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dotnethacker.wordpress.com/2008/05/10/how-to-find-assembly-has-assigned-strong-name-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a4569660033e084ca73354bbd3c0719?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rajesh20k</media:title>
		</media:content>
	</item>
	</channel>
</rss>