<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>A .NET Emperor’s Blog: Life with .NET</title>
	
	<link>http://www.arjunjadeja.com</link>
	<description>If u win u need not explain... But if u lose u should not be there to explain - Arjun Jadeja</description>
	<pubDate>Wed, 10 Feb 2010 03:21:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AnetEmperorsBlogLifeWithnet" /><feedburner:info uri="anetemperorsbloglifewithnet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>AnetEmperorsBlogLifeWithnet</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Remove Html Tages form string</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/naQ6kiG1TAw/</link>
		<comments>http://www.arjunjadeja.com/2009/12/21/remove-html-tages-form-strin/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 10:41:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.Net  Emperor]]></category>

		<category><![CDATA[html tag removal]]></category>

		<category><![CDATA[remove html tag from string in asp .net]]></category>

		<category><![CDATA[Remove Html Tages form string]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=108</guid>
		<description><![CDATA[Hello Friends,
Here is the code which will remove html tags form the string in vb .net.
Please check 
Code 1 :

 Dim str As String = "put html string here"
 Str = Regex.Replace(Str, "\]*\>&#8221;, String.Empty, RegexOptions.IgnoreCase)
 Str = Regex.Replace(Str, &#8220;[ \t\r\n]&#8220;, &#8221; &#8220;)

Code 2 :

Public Shared Function RemoveHTML(ByVal strText As String) As String
    [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends,</p>
<p>Here is the code which will remove html tags form the string in vb .net.<span id="more-108"></span></p>
<p>Please check </p>
<p><strong>Code 1 :</strong><br />
<code><br />
 Dim str As String = "put html string here"<br />
 Str = Regex.Replace(Str, "\<[^\>]*\>&#8221;, String.Empty, RegexOptions.IgnoreCase)<br />
 Str = Regex.Replace(Str, &#8220;[ \t\r\n]&#8220;, &#8221; &#8220;)<br />
</code></p>
<p><strong>Code 2 :</strong><br />
<code><br />
Public Shared Function RemoveHTML(ByVal strText As String) As String<br />
        Dim TAGLIST As String<br />
        TAGLIST = ";!--;!DOCTYPE;A;ACRONYM;ADDRESS;APPLET;AREA;B;BASE;BASEFONT;" _<br />
                   &#038; "  BGSOUND;BIG;BLOCKQUOTE;BODY;BR;BUTTON;CAPTION;CENTER;CITE;CODE;" _<br />
                  &#038; "COL;COLGROUP;COMMENT;DD;DEL;DFN;DIR;DIV;DL;DT;EM;EMBED;FIELDSET;" _<br />
                   &#038; "FONT;FORM;FRAME;FRAMESET;HEAD;H1;H2;H3;H4;H5;H6;HR;HTML;I;IFRAME;IMG;" _<br />
                  &#038; "INPUT;INS;ISINDEX;KBD;LABEL;LAYER;LAGEND;LI;LINK;LISTING;MAP;MARQUEE;" _<br />
                  &#038; "MENU;META;NOBR;NOFRAMES;NOSCRIPT;OBJECT;OL;OPTION;P;PARAM;PLAINTEXT;" _<br />
                  &#038; "PRE;Q;S;SAMP;SCRIPT;SELECT;SMALL;SPAN;STRIKE;STRONG;STYLE;SUB;SUP;" _<br />
                  &#038; "TABLE;TBODY;TD;TEXTAREA;TFOOT;TH;THEAD;TITLE;TR;TT;U;UL;VAR;WBR;XMP;"</p>
<p>        Const BLOCKTAGLIST As String = ";APPLET;EMBED;FRAMESET;HEAD;NOFRAMES;NOSCRIPT;OBJECT;SCRIPT;STYLE;"<br />
        Dim nPos1 As Integer<br />
        Dim nPos2 As Integer<br />
        Dim nPos3 As Integer<br />
        Dim strResult As String<br />
        Dim strTagName As String<br />
        Dim bRemove As Boolean<br />
        Dim bSearchForBlock As Boolean</p>
<p>        nPos1 = InStr(strText, "<")<br />
        Do While nPos1 > 0<br />
            nPos2 = InStr(nPos1 + 1, strText, &#8220;>&#8221;)<br />
            If nPos2 > 0 Then<br />
                strTagName = Mid(strText, nPos1 + 1, nPos2 - nPos1 - 1)<br />
                strTagName = Replace(Replace(strTagName, vbCr, &#8221; &#8220;), vbLf, &#8221; &#8220;)</p>
<p>                nPos3 = InStr(strTagName, &#8221; &#8220;)<br />
                If nPos3 > 0 Then<br />
                    strTagName = Left(strTagName, nPos3 - 1)<br />
                End If</p>
<p>                If Left(strTagName, 1) = &#8220;/&#8221; Then<br />
                    strTagName = Mid(strTagName, 2)<br />
                    bSearchForBlock = False<br />
                Else<br />
                    bSearchForBlock = True<br />
                End If</p>
<p>                If InStr(1, TAGLIST, &#8220;;&#8221; &#038; strTagName &#038; &#8220;;&#8221;, vbTextCompare) > 0 Then<br />
                    bRemove = True<br />
                    If bSearchForBlock Then<br />
                        If InStr(1, BLOCKTAGLIST, &#8220;;&#8221; &#038; strTagName &#038; &#8220;;&#8221;, vbTextCompare) > 0 Then<br />
                            nPos2 = Len(strText)<br />
                            nPos3 = InStr(nPos1 + 1, strText, &#8220;</" &#038; strTagName, vbTextCompare)<br />
                            If nPos3 > 0 Then<br />
                                nPos3 = InStr(nPos3 + 1, strText, &#8220;>&#8221;)<br />
                            End If</p>
<p>                            If nPos3 > 0 Then<br />
                                nPos2 = nPos3<br />
                            End If<br />
                        End If<br />
                    End If<br />
                Else<br />
                    bRemove = False<br />
                End If</p>
<p>                If bRemove Then<br />
                    strResult = strResult &#038; Left(strText, nPos1 - 1)<br />
                    strText = Mid(strText, nPos2 + 1)<br />
                Else<br />
                    strResult = strResult &#038; Left(strText, nPos1)<br />
                    strText = Mid(strText, nPos1 + 1)<br />
                End If<br />
            Else<br />
                strResult = strResult &#038; strText<br />
                strText = &#8220;&#8221;<br />
            End If</p>
<p>            nPos1 = InStr(strText, &#8220;<")<br />
        Loop<br />
        strResult = strResult &#038; strText</p>
<p>        RemoveHTML = strResult<br />
    End Function</p>
<p></code></p>
<p>Please check and if it will work for you please comment on site.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2009/07/20/generate-thumbnail-for-image-on-fly/" rel="bookmark">Generate thumbnail for image on fly</a></li><li><a href="http://www.arjunjadeja.com/2009/07/20/import-csv-file-into-gridview-in-asp-net/" rel="bookmark">Import CSV File into Gridview in Asp .Net</a></li><li><a href="http://www.arjunjadeja.com/2008/05/23/what-is-div-tag/" rel="bookmark">What Is DIV Tag</a></li><li><a href="http://www.arjunjadeja.com/2008/07/31/embed-flash-in-aspx-pages/" rel="bookmark">Embed Flash IN .Aspx Pages</a></li><li><a href="http://www.arjunjadeja.com/2009/07/20/find-all-textboxes-or-any-other-control-in-whole-page-in-asp-net/" rel="bookmark">Find all textboxes or any other control in whole page in asp .net</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/naQ6kiG1TAw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/12/21/remove-html-tages-form-strin/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/12/21/remove-html-tages-form-strin/</feedburner:origLink></item>
		<item>
		<title>Bit Torrent Search Engine List</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/q01bUBiH3J0/</link>
		<comments>http://www.arjunjadeja.com/2009/12/21/bit-torrent-search-engine-list/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 09:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Free Stuff]]></category>

		<category><![CDATA[Bit Torrent]]></category>

		<category><![CDATA[Bit Torrent Search Engine List]]></category>

		<category><![CDATA[Torrent Search Engine]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=107</guid>
		<description><![CDATA[BitTorrent is a peer-to-peer file sharing protocol used for distributing large amounts of data.Torrents, typically ending in &#8220;.torrent&#8221;,
It&#8217;s actually pretty cool technology that really just boils down to another way to download files. So really, you just use .torrent files to download other files.
BitTorrent is a distributed file distribution technology. Yes, &#8220;distributed distribution&#8221;. When you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>BitTorrent</strong> is a peer-to-peer file sharing protocol used for distributing large amounts of data.Torrents, typically ending in &#8220;.torrent&#8221;,</p>
<p>It&#8217;s actually pretty cool technology that really just boils down to another way to download files. So really, you just use .torrent files to download other files.</p>
<p>BitTorrent is a distributed file distribution technology. Yes, &#8220;distributed distribution&#8221;. When you download a file using BitTorrent, the file is actually broken up into chunk that your BitTorrent client program then downloads and reassembles into the final file as the pieces arrive. To over-simplify, what makes it interesting are two things:</p>
<ul>
<li>The different chunks you download can all be coming from different machines. A BitTorrent client will connect to many other BitTorrent clients and download several chunks at once, in random order. In the long run this makes the protocol fairly efficient, and very nicely scalable - the more BitTorrent clients that are serving up a given file, the faster other clients can download it.</li>
<li>As you start collecting chunks of the file, your BitTorrent client will start making those chunks available for downloading to other BitTorrent clients, and will become a part of the peer-to-peer file distribution network.</li>
</ul>
<p><span id="more-107"></span></p>
<p><strong>How do you start?</strong></p>
<p>You&#8217;ll need a computer with a fast internet connection and the genuine <a href="http://www.bittorrent.com/btusers/download/"><strong> BitTorrent </strong></a>client.</p>
<p>Check out the <a href="http://www.bittorrent.com/btusers/guides/"> <strong> Beginner&#8217;s Guide </strong></a>for more details.</p>
<p>Here is the list of search engine which i like most,</p>
<ul>
<li><span style="text-decoration: underline;"><strong><a href="http://www.torrentz.com/"><strong>Torrentz.com</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://alivetorrents.com/"><strong>alivetorrents.com</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://www.monova.org/"><strong>monova.org</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://www.mininova.org/"><strong>Mininova.org</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://isohunt.com/"><strong>Isohunt.com</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://www.torrenthound.com/"><strong>torrenthound.com</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://www.kickasstorrents.com/"><strong>kickasstorrents.com</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://extratorrent.com/"><strong>extratorrent.com</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://torrentdownloads.net/"><strong>torrentdownloads.net</strong></a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://thepiratebay.org/" target="_blank">thepiratebay.org</a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://www.btmon.com/">btmon.com</a></strong></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://bitenova.org/" target="_blank">Bitenova.org</a></strong></span></li>
<li><span style="text-decoration: underline;"><a href="http://torrentbox.com/torrents-browse.php?news" target="_blank"><strong>Torrentbox.com</strong></a></span></li>
<li><span style="text-decoration: underline;"><strong><a href="http://torrentdownloads.net/" target="_blank">torrentdownloads.net</a></strong></span></li>
<li><strong><span style="text-decoration: underline;"><a href="http://sumotorrent.com/" target="_blank">SumoTorrent</a></span></strong></li>
<li><strong><span style="text-decoration: underline;"><a href="http://www.vertor.com/" target="_blank">vertor.com/</a></span></strong></li>
</ul>
<p>Enjoy Friends&#8230;.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/05/12/customize-title-bar-or-title-of-yahoo-messenger/" rel="bookmark">Customize Title Bar Or Title of Yahoo Messenger</a></li><li><a href="http://www.arjunjadeja.com/2008/07/08/firefox-3-has-release-with-some-major-updates/" rel="bookmark">FireFox 3 Has Release with some major Updates</a></li><li><a href="http://www.arjunjadeja.com/2008/07/05/download-youtube-and-othe-video-sites-video-without-software/" rel="bookmark">Download youtube and othe video sites video without software</a></li><li><a href="http://www.arjunjadeja.com/2008/11/03/insert-data-from-one-table-to-another-table-in-sql-server/" rel="bookmark">Insert Data From One Table to Another Table in Sql Server</a></li><li><a href="http://www.arjunjadeja.com/2008/07/05/get-mobile-wallpapers-themes-ring-tones-videos-games-software-free-of-cost/" rel="bookmark">Get Mobile Wallpapers, Themes, Ring tones, Videos, Games, Software Free Of Cost</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/q01bUBiH3J0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/12/21/bit-torrent-search-engine-list/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/12/21/bit-torrent-search-engine-list/</feedburner:origLink></item>
		<item>
		<title>Cool Proxy Server List</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/-5P5b_8-_tA/</link>
		<comments>http://www.arjunjadeja.com/2009/11/10/cool-proxy-server-list/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 11:43:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Free Stuff]]></category>

		<category><![CDATA[Proxy Server]]></category>

		<category><![CDATA[Proxy Server list]]></category>

		<category><![CDATA[Proxywebsite]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=105</guid>
		<description><![CDATA[Hello Friends ,
I m BACK with bang sorry for not made new articles in recent days, actually reason i was working on new project which  difficult so i have not found time anyways when i was working on the project i have found few websites which are only open for particular countries also same time [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends ,</p>
<p>I m BACK with bang sorry for not made new articles in recent days, actually reason i was working on new project which  difficult so i have not found time anyways when i was working on the project i have found few websites which are only open for particular countries also same time one of my friend told me that in their company few websites are locked you can`t access list of websites.</p>
<p>so friends here is the best solution , you can use proxy server website to access any website in any environment.</p>
<p>Please check here is few list of websites which i like it all the websites are proxy servers.<span id="more-105"></span></p>
<p>1)<a title="HideMyAss.com" href="http://www.HideMyAss.com" target="_blank">HideMyAss</a></p>
<p>2)<a title="number1proxy" href="http://www.number1proxy.com/" target="_blank">number1proxy</a></p>
<p>3)<a title="Unblocked.org" href="http://www.Unblocked.org" target="_blank">Unblocked</a></p>
<p>4)<a title="BoratProxy.com" href="http://www.BoratProxy.com" target="_blank">BoratProxy</a></p>
<p>5)<a title="SiteSurf" href="http://www.SiteSurf.net" target="_blank">SiteSurf</a></p>
<p>6)<a title="ProxyBuddy.com" href="http://www.ProxyBuddy.com" target="_blank">ProxyBuddy</a></p>
<p>7)<a title="LimitKiller.com" href="http://www.LimitKiller.com" target="_blank">LimitKiller</a></p>
<p> <img src='http://www.arjunjadeja.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> <a title="HideMy.info" href="http://www.HideMy.info" target="_blank">HideMy</a></p>
<p>9)<a title="Proxrio.com" href="http://www.Proxrio.com" target="_blank">Proxrio</a></p>
<p>10)<a title="CantBustMe.com" href="http://www.CantBustMe.com" target="_blank">CantBustMe</a></p>
<p>Here is few more link please copy and paste in browser.</p>
<p>http://www.highspeedproxy.info/<br />
http://www.guardtunnel.com/<br />
http://www.totalnetprivacy.com/<br />
http://hidetosurf.co.cc/<br />
http://www.freeproxy.ca/<br />
http://hide-me.co.tv/<br />
http://money2cash.info/<br />
http://unblockit.biz/<br />
http://www.bypassschoolblocks.info/<br />
http://moneydating.info/</p>
<p>Enjoy the list of proxy websites.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2009/01/30/find-people-on-internet/" rel="bookmark">Find People on internet</a></li><li><a href="http://www.arjunjadeja.com/2009/07/20/free-sms-in-india/" rel="bookmark">FREE SMS in India</a></li><li><a href="http://www.arjunjadeja.com/2008/12/06/what-is-www2-or-www1-or-www3/" rel="bookmark">What is WWW2 or WWW1 or www3 ?</a></li><li><a href="http://www.arjunjadeja.com/2009/12/21/bit-torrent-search-engine-list/" rel="bookmark">Bit Torrent Search Engine List</a></li><li><a href="http://www.arjunjadeja.com/2008/07/08/firefox-3-has-release-with-some-major-updates/" rel="bookmark">FireFox 3 Has Release with some major Updates</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/-5P5b_8-_tA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/11/10/cool-proxy-server-list/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/11/10/cool-proxy-server-list/</feedburner:origLink></item>
		<item>
		<title>Select data from two diffrent databases which located on diffrent servers</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/jml1E6WrRqo/</link>
		<comments>http://www.arjunjadeja.com/2009/08/03/select-data-from-two-server/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 06:07:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Sql Server]]></category>

		<category><![CDATA[Select data from two diffrent databases which located o]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=104</guid>
		<description><![CDATA[Hello Friends,
Just before one day i got one request from my client he wants to compare two database tables which located on the two different servers.
i thought how can i do this with sql server and i found one terrific solution to achieve same task. so   all the sql server programmers and .net [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends,</p>
<p>Just before one day i got one request from my client he wants to compare two database tables which located on the two different servers.</p>
<p>i thought how can i do this with sql server and i found one terrific solution to achieve same task. so   all the sql server programmers and .net programmers who stuck on same issue here is the solution for you guys.<span id="more-104"></span></p>
<p>i take one example to describe you how can you do with a simple query or store procedure,</p>
<p>i have two servers first server name is A2 and second server name is A4 in both the server there are two different database A2 has the database name UserCatalog and second server A4 has the database name CatalogRequests.</p>
<p>Now both the database has different tables name. first  UserCatalog has the table name is tb_user and second database CatalogRequests has the table name is tb_catalog.</p>
<p>now both the table have the conman field which is rowid. </p>
<p>the requirement is compare both the tables and get the values from tb_catalog and not in the tb_user table.</p>
<p>here is the query to achieve same task which describes you above.</p>
<p>select * from A4.CatalogRequests..tb_catalog where rowid Not In (Select rowid from  A2.UserCatalog ..tb_User) order by rowid desc;</p>
<p>so here is the description what above stuff mean.</p>
<p>to access different server with different database   <strong>servername.databasename..tablename</strong><br />
make sure after database name when you write the table name in between use <strong>&#8220;..&#8221;</strong></p>
<p>please reply me if you have any kind of suggestion or if you have any kind of problem.</p>
<p>Thanks in Advance. </p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/10/08/get-all-active-connection-for-each-database-in-sql-server-2005/" rel="bookmark">Get all active connection for each database in Sql server 2005</a></li><li><a href="http://www.arjunjadeja.com/2008/10/08/find-the-size-of-all-tables-for-any-database-in-sql-server-2005/" rel="bookmark">Find the size of all tables for any database in sql server 2005</a></li><li><a href="http://www.arjunjadeja.com/2009/07/15/export-sql-table-data-in-to-csv-file-in-asp-net/" rel="bookmark">Export Sql Table Data in to CSV File in asp .net</a></li><li><a href="http://www.arjunjadeja.com/2009/07/20/get-nth-highest-value-in-sql-server/" rel="bookmark">Get Nth highest value in Sql server</a></li><li><a href="http://www.arjunjadeja.com/2008/10/08/import-xml-data-into-sql-server-table/" rel="bookmark">Import XML data into sql server table</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/jml1E6WrRqo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/08/03/select-data-from-two-server/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/08/03/select-data-from-two-server/</feedburner:origLink></item>
		<item>
		<title>Microsoft Releases Open-source for Content Management System</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/ZQEXXc5FzJA/</link>
		<comments>http://www.arjunjadeja.com/2009/07/20/microsoft-releases-open-source-for-content-management-system/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 13:30:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.Net  Emperor]]></category>

		<category><![CDATA[Microsoft Blog]]></category>

		<category><![CDATA[Microsoft CMS system]]></category>

		<category><![CDATA[Microsoft Releases Open-source for Content Management S]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=103</guid>
		<description><![CDATA[Hello Friends,
Microsoft Release the Open source for the content management system or you can say is new blog engine name as Oxite.
Oxite is an open source, web standards compliant, blog engine built on ASP.NET MVC.
Oxite has the features like Commenting,Comment moderation,Tagging , Content pages etc i mean all the blog related stuff included in the [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends,</p>
<p>Microsoft Release the Open source for the content management system or you can say is new blog engine name as <strong>Oxite</strong>.</p>
<p>Oxite is an open source, web standards compliant, blog engine built on ASP.NET MVC.</p>
<p>Oxite has the features like Commenting,Comment moderation,Tagging , Content pages etc i mean all the blog related stuff included in the Oxite. <span id="more-103"></span></p>
<p>Here is the link to download <a title="Oxite" href="http://www.codeplex.com/oxite" target="_blank">Oxite</a></p>
<p>ASP.NET MVC lets developers use ASP.NET to build Web applications using an architecture called model-view-controller. Microsoft released a preview of the ASP.NET MVC framework, designed to make it easier for developers to test applications, late last year.</p>
<p>so enjoy the Microsoft CMS system.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/07/22/world%e2%80%99s-largest-document-sharing-community/" rel="bookmark">world’s largest document sharing community</a></li><li><a href="http://www.arjunjadeja.com/2008/07/08/firefox-3-has-release-with-some-major-updates/" rel="bookmark">FireFox 3 Has Release with some major Updates</a></li><li><a href="http://www.arjunjadeja.com/2008/10/08/find-out-logged-users-in-to-a-sql-server-2005/" rel="bookmark">find out  logged users in to a SQL Server 2005</a></li><li><a href="http://www.arjunjadeja.com/2009/11/10/cool-proxy-server-list/" rel="bookmark">Cool Proxy Server List</a></li><li><a href="http://www.arjunjadeja.com/2008/11/03/speed-up-your-firefox-browsing-and-internet-explorer/" rel="bookmark">Speed Up Your FireFox Browsing and Internet Explorer</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/ZQEXXc5FzJA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/07/20/microsoft-releases-open-source-for-content-management-system/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/07/20/microsoft-releases-open-source-for-content-management-system/</feedburner:origLink></item>
		<item>
		<title>.Net Interview Questions</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/VvXKLvlkAik/</link>
		<comments>http://www.arjunjadeja.com/2009/07/20/net-interview-questions/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 12:39:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.Net  Emperor]]></category>

		<category><![CDATA[.Net Interview Questions]]></category>

		<category><![CDATA[Interview Questions]]></category>

		<category><![CDATA[Interview Questions for asp .net]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=102</guid>
		<description><![CDATA[Hello Frieds,
Now Recession is almost over and all we want to try to relocate or change our job in to MNC company.
so here is the links which will provides all the types of .net interview question which will helps all of us to get right job which we all wants.
Below is the list of all [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Frieds,</p>
<p>Now Recession is almost over and all we want to try to relocate or change our job in to MNC company.</p>
<p>so here is the links which will provides all the types of .net interview question which will helps all of us to get right job which we all wants.<span id="more-102"></span></p>
<p>Below is the list of all the websites which i like most.</p>
<p><a href="http://www.geekinterview.com/Interview-Questions/Microsoft/ASP-NET">link 1</a><br />
<a href="http://www.coolinterview.com/">link 2</a><br />
<a href="http://www.dotnetcurry.com/BrowseArticles.aspx">link 3</a><br />
<a href="http://www.thinkinterview.com/">link 4</a><br />
<a href="http://www.interviewqsn.com/">link 5</a><br />
<a href="http://www.uknewit.net/">link 6</a><br />
<a href="http://www.dotnetfunda.com/">link 7</a><br />
<a href="http://www.techinterviews.com/">link 8</a><br />
<a href="http://www.aspnetfaq.com/">link 9</a><br />
<a href="http://www.andymcm.com/">link 10</a><br />
<a href="http://www.yoda.arachsys.com/csharp/faq/">link 11</a><br />
<a href="http://www.syncfusion.com/faq/aspnet/default.aspx">link 12</a><br />
<a href="http://www.interviewboard.com/CSharp+Questions/default.aspx">link 13</a><br />
<a href="http://www.careerride.com/CSharp-Interview-Questions.aspx">link 14</a><br />
<a href="http://r4r.co.in/C1/">link15 </a><br />
<a href="http://www.devbistro.com/tech-interview-questions/.NET.jsp">link 16</a><br />
<a href="http://www.dotnetspider.com/questions/">link 17</a></p>
<p>Below links for the sql server Interview questions.</p>
<p><a href="http://www.pinaldave.com/sql-download/SQLServer2008InterviewQuestionsAnswers.pdf">link 1</a><br />
<a href="http://vyaskn.tripod.com/iq.htm">link 2</a><br />
<a href="http://www.brentozar.com/sql-interview-questions/">link 3</a></p>
<p>Enjoy the questions.<br />
Best of luck for the interviews.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/05/12/search-engine-for-rapidshare/" rel="bookmark">Search Engine For Rapidshare</a></li><li><a href="http://www.arjunjadeja.com/2008/07/04/watch-all-live-sports-new-bollywood-movies-free-of-cost/" rel="bookmark">Watch all live sports new bollywood movies free of cost</a></li><li><a href="http://www.arjunjadeja.com/2009/07/20/free-sms-in-india/" rel="bookmark">FREE SMS in India</a></li><li><a href="http://www.arjunjadeja.com/2009/11/10/cool-proxy-server-list/" rel="bookmark">Cool Proxy Server List</a></li><li><a href="http://www.arjunjadeja.com/2008/05/06/download-hindi-music-free-of-cost/" rel="bookmark">Download Latest Hindi Music Free Of Cost</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/VvXKLvlkAik" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/07/20/net-interview-questions/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/07/20/net-interview-questions/</feedburner:origLink></item>
		<item>
		<title>Get Nth highest value in Sql server</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/dpl1O5yhTqM/</link>
		<comments>http://www.arjunjadeja.com/2009/07/20/get-nth-highest-value-in-sql-server/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 10:21:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Sql Server]]></category>

		<category><![CDATA[Get Nth highest value in Sql server]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=101</guid>
		<description><![CDATA[Hello Friends ,
Recently few of my friends was looking for a job during them interviews one comman question asked to them is the  get or find the Nth value form the any table like Employee table.
so here is the one query which will give you Nth value from the employee table.
1) SELECT DISTINCT (a.sal) [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends ,</p>
<p>Recently few of my friends was looking for a job during them interviews one comman question asked to them is the  get or find the Nth value form the any table like Employee table.</p>
<p>so here is the one query which will give you Nth value from the employee table.<span id="more-101"></span></p>
<p><strong>1) <span id="sort1"></span>SELECT DISTINCT (a.sal) FROM EMP A WHERE &amp;N = (SELECT COUNT (DISTINCT (b.sal)) FROM EMP B WHERE a.sal&lt;=b.sal);</strong></p>
<p><strong>2) Select top 1 Name, Salary From Employees Where Salary Not In (Select Distinct Top 4 Salary From Employees order by Salary desc) order by Salary desc</strong></p>
<p><strong>3) SELECT TOP 1 Mark FROM (SELECT TOP {N} Mark FROM Student  ORDER BY Mark  DESC) AS E ORDER BY Mark   ASC</strong></p>
<p><strong><span id="ctl00_ContentPlaceHolder1_lblDescription" style="color: darkblue;">Where {N}=  2,3,4,5 etc</p>
<p>Eg:  For 4th  Highest Mark  {N}=4</span></strong></p>
<p>Enjoy friends</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/11/03/insert-data-from-one-table-to-another-table-in-sql-server/" rel="bookmark">Insert Data From One Table to Another Table in Sql Server</a></li><li><a href="http://www.arjunjadeja.com/2009/08/03/select-data-from-two-server/" rel="bookmark">Select data from two diffrent databases which located on diffrent servers</a></li><li><a href="http://www.arjunjadeja.com/2008/10/08/get-all-active-connection-for-each-database-in-sql-server-2005/" rel="bookmark">Get all active connection for each database in Sql server 2005</a></li><li><a href="http://www.arjunjadeja.com/2008/10/08/import-xml-data-into-sql-server-table/" rel="bookmark">Import XML data into sql server table</a></li><li><a href="http://www.arjunjadeja.com/2009/03/17/solve-image-problem-when-you-use-master-page-and-done-url-rewriting-in-asp-net/" rel="bookmark">Solve Image Problem When you use Master Page and Done Url Rewriting In Asp .Net</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/dpl1O5yhTqM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/07/20/get-nth-highest-value-in-sql-server/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/07/20/get-nth-highest-value-in-sql-server/</feedburner:origLink></item>
		<item>
		<title>Find all textboxes or any other control in whole page in asp .net</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/6esc6XXGQL8/</link>
		<comments>http://www.arjunjadeja.com/2009/07/20/find-all-textboxes-or-any-other-control-in-whole-page-in-asp-net/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 10:09:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.Net  Emperor]]></category>

		<category><![CDATA[Find all textboxes or any other control in whole page i]]></category>

		<category><![CDATA[Find control on page]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=100</guid>
		<description><![CDATA[Hello Friends,
Now a days i m  working in one project where i need to add textbox at run time when user will press button add new field then one textbox will add on the page with validation control for same textbox after user will fill those new added textboxes and press save i want to [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends,</p>
<p>Now a days i m  working in one project where i need to add textbox at run time when user will press button add new field then one textbox will add on the page with validation control for same textbox after user will fill those new added textboxes and press save i want to all the new added textboxes values run time and save in the database.</p>
<p>i m giving you code where not just textbox but you can find any web control in one page.<span id="more-100"></span></p>
<p>First add below code in the aspx page.</p>
<p><strong>&lt;asp:Table ID=&#8221;tblText&#8221; runat=&#8221;server&#8221;&gt;<br />
&lt;/asp:Table&gt;</strong></p>
<p>then add this code on the button click</p>
<p><strong>Sub AddControlsForTextbox(ByVal name As String)<br />
Dim newrow As New TableRow<br />
Dim newcell As New TableCell<br />
Dim newtextbox As New TextBox<br />
Dim req1 As New RequiredFieldValidator<br />
newtextbox.ID = &#8220;txt&#8221; &amp; name<br />
req1.ControlToValidate = &#8220;txt&#8221; &amp; name<br />
req1.ErrorMessage = &#8221; Please Enter Value In  &#8221; &amp; name<br />
req1.Display = ValidatorDisplay.Dynamic<br />
Dim lbl As New Label<br />
lbl.Text = name &amp; &#8221; :  &#8221;</p>
<p>newcell.Controls.Add(lbl)<br />
newcell.Controls.Add(newtextbox)<br />
newcell.Controls.Add(req1)<br />
newrow.Cells.Add(newcell)</p>
<p>tblChar.Rows.Add(newrow)</p>
<p>End Sub<br />
</strong></p>
<p>then when user click on save button get the textbox values for that you have to get all the textboxes which is currently appearing on the page.</p>
<p>please use below code for above condition</p>
<p><strong>Private Sub processTextbox()<br />
For Each ctrl As Control In Page.Controls<br />
If TypeOf ctrl Is TextBox Then<br />
&#8216;do something here<br />
Else<br />
&#8216;do something here<br />
End If<br />
Next<br />
End Sub</strong></p>
<p>Enjoy the coding</p>
<p>same way i check textbox in one page you can check for any control just replace the textbox to any other control.</p>
<p>please let me know if you have any kind of problem in this code.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/07/22/asp-net-new-gui-controls/" rel="bookmark">ASP .Net GUI Controls And Media Controls</a></li><li><a href="http://www.arjunjadeja.com/2009/05/22/asp-net-menu-controls-and-ajax-controls-not-working-in-safari-browser/" rel="bookmark">Asp .Net Menu Controls and Ajax Controls Not working in Safari Browser</a></li><li><a href="http://www.arjunjadeja.com/2008/10/01/upload-multiple-file-through-fileuploadcontrol/" rel="bookmark">Upload multiple file through fileuploadcontrol</a></li><li><a href="http://www.arjunjadeja.com/2009/05/22/export-gridview-data-to-excel-sheet-in-asp-net/" rel="bookmark">Export Gridview Data to Excel Sheet in Asp .net</a></li><li><a href="http://www.arjunjadeja.com/2008/07/31/embed-flash-in-aspx-pages/" rel="bookmark">Embed Flash IN .Aspx Pages</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/6esc6XXGQL8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/07/20/find-all-textboxes-or-any-other-control-in-whole-page-in-asp-net/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/07/20/find-all-textboxes-or-any-other-control-in-whole-page-in-asp-net/</feedburner:origLink></item>
		<item>
		<title>Generate thumbnail for image on fly</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/ydJhIG1b09U/</link>
		<comments>http://www.arjunjadeja.com/2009/07/20/generate-thumbnail-for-image-on-fly/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 08:10:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.Net  Emperor]]></category>

		<category><![CDATA[Create thumbnail for image on fly]]></category>

		<category><![CDATA[Create thumbnail for image on Run Time]]></category>

		<category><![CDATA[Generate thumbnail for image on fly]]></category>

		<category><![CDATA[Generate thumbnail for image on Run time]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=89</guid>
		<description><![CDATA[Hello Friends,
Now a days in any web appication comman request made by clients is the generates a thumbnail for any product image or user profile image so here is the solution for the generates thumbnail on fly when admin or user add any image.
Private Function GetThumbnailView(ByVal originalImagePath As String, ByVal height As Integer, ByVal width [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends,</p>
<p>Now a days in any web appication comman request made by clients is the generates a thumbnail for any product image or user profile image so here is the solution for the generates thumbnail on fly when admin or user add any image.<span id="more-89"></span></p>
<p><strong>Private Function GetThumbnailView(ByVal originalImagePath As String, ByVal height As Integer, ByVal width As Integer) As String<br />
&#8216;Consider Image is stored at path like &#8220;ProductImage\\Product1.jpg&#8221;</strong></p>
<p><strong>&#8216;Now we have created one another folder ProductThumbnail to store thumbnail image of product.<br />
&#8216;So let name of image be same, just change the FolderName while storing image.<br />
Dim thumbnailImagePath As String = originalImagePath.Replace(&#8221;ProductImage&#8221;, &#8220;ProductThumbnail&#8221;)<br />
&#8216;If thumbnail Image is not available, generate it.<br />
If Not System.IO.File.Exists(Server.MapPath(thumbnailImagePath)) Then<br />
Dim imThumbnailImage As System.Drawing.Image<br />
Dim OriginalImage As System.Drawing.Image = System.Drawing.Image.FromFile(Server.MapPath(originalImagePath))<br />
imThumbnailImage = OriginalImage.GetThumbnailImage(width, height, New System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback), IntPtr.Zero)<br />
imThumbnailImage.Save(Server.MapPath(thumbnailImagePath), System.Drawing.Imaging.ImageFormat.Jpeg)</strong></p>
<p><strong>imThumbnailImage.Dispose()<br />
OriginalImage.Dispose()<br />
End If<br />
Return thumbnailImagePath<br />
End Function</strong></p>
<p><strong>Public Function ThumbnailCallback() As Boolean<br />
Return False<br />
End Function</strong></p>
<p>Call this function like</p>
<p><strong>GetThumbnailView(&#8221;ProductImage\Product1.jpg&#8221;, 100, 100)</strong></p>
<p>Enjoy Friends.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/05/08/sorting-indicator-in-gridview/" rel="bookmark">Sorting Indicator In Gridview</a></li><li><a href="http://www.arjunjadeja.com/2009/03/17/solve-image-problem-when-you-use-master-page-and-done-url-rewriting-in-asp-net/" rel="bookmark">Solve Image Problem When you use Master Page and Done Url Rewriting In Asp .Net</a></li><li><a href="http://www.arjunjadeja.com/2009/07/20/import-csv-file-into-gridview-in-asp-net/" rel="bookmark">Import CSV File into Gridview in Asp .Net</a></li><li><a href="http://www.arjunjadeja.com/2008/07/03/how-to-rewrite-url-in-asp-net/" rel="bookmark">How to Rewrite Url In Asp .Net</a></li><li><a href="http://www.arjunjadeja.com/2009/12/21/remove-html-tages-form-strin/" rel="bookmark">Remove Html Tages form string</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/ydJhIG1b09U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/07/20/generate-thumbnail-for-image-on-fly/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/07/20/generate-thumbnail-for-image-on-fly/</feedburner:origLink></item>
		<item>
		<title>Multiple Programming Languages in the App_Code Folder in asp .net</title>
		<link>http://feedproxy.google.com/~r/AnetEmperorsBlogLifeWithnet/~3/BA_dwlS2Y6U/</link>
		<comments>http://www.arjunjadeja.com/2009/07/20/multiple-programming-languages-in-the-app_code-folder-in-asp-net/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 08:06:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.Net  Emperor]]></category>

		<category><![CDATA[Multiple Programming Languages in the App_Code Folder i]]></category>

		<category><![CDATA[Use CS and VB files in App_Code]]></category>

		<guid isPermaLink="false">http://www.arjunjadeja.com/?p=99</guid>
		<description><![CDATA[Hello Friends,
in this article i will give you solution which i was finding since 1 year.
normally when we crate any web application project we use the app_code folder to generate single assembly in which all the files in the App_Code folder must be in the same programming language.
but sometimes i feel that if in some [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends,</p>
<p>in this article i will give you solution which i was finding since 1 year.</p>
<p>normally when we crate any web application project we use the app_code folder to generate single assembly in which all the files in the App_Code folder must be in the same programming language.</p>
<p>but sometimes i feel that if in some complex things i need c# code file and some times i need that i want vb file for the string manupulation and all that so can i place both the languages in same app_code folder.</p>
<p>here is the solution for this complex question <span id="more-99"></span></p>
<p>1) Create two folders in App_Code folder name as &#8220;CSCODE&#8221; and &#8220;VBCODE&#8221; place c# files in the cscode folder abd vb code files in vbcode folder.</p>
<p>2)add below code in the wb.config file</p>
<pre id="ctl00_MTContentSelector1_mainContentContainer_ctl05other" class="libCScode" style="white-space: pre-wrap;"><strong>&lt;compilation debug=&#8221;false&#8221;&gt;
    &lt;codeSubDirectories&gt;
        &lt;add directoryName=&#8221;VBCode&#8221; /&gt;
        &lt;add directoryName=&#8221;CSCode&#8221; /&gt;
    &lt;/codeSubDirectories&gt;
&lt;/compilation&gt;</strong></pre>
<p>Now please built the website.</p>
<p>Enjoy the code<br />
please reply me on the same post if it will works for you.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.arjunjadeja.com/2008/05/12/customize-title-bar-or-title-of-yahoo-messenger/" rel="bookmark">Customize Title Bar Or Title of Yahoo Messenger</a></li><li><a href="http://www.arjunjadeja.com/2008/07/03/how-to-rewrite-url-in-asp-net/" rel="bookmark">How to Rewrite Url In Asp .Net</a></li><li><a href="http://www.arjunjadeja.com/2009/03/17/solve-image-problem-when-you-use-master-page-and-done-url-rewriting-in-asp-net/" rel="bookmark">Solve Image Problem When you use Master Page and Done Url Rewriting In Asp .Net</a></li><li><a href="http://www.arjunjadeja.com/2008/10/01/upload-multiple-file-through-fileuploadcontrol/" rel="bookmark">Upload multiple file through fileuploadcontrol</a></li><li><a href="http://www.arjunjadeja.com/2009/03/17/modify-the-webconfig-file-at-runtime/" rel="bookmark">Modify the web.config file at runtime</a></li></ul></div><img src="http://feeds.feedburner.com/~r/AnetEmperorsBlogLifeWithnet/~4/BA_dwlS2Y6U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.arjunjadeja.com/2009/07/20/multiple-programming-languages-in-the-app_code-folder-in-asp-net/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.arjunjadeja.com/2009/07/20/multiple-programming-languages-in-the-app_code-folder-in-asp-net/</feedburner:origLink></item>
	</channel>
</rss>
