<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-415342209654647207</id><updated>2012-01-30T15:50:48.831-08:00</updated><category term='C#'/><category term='LINQ'/><category term='ASP.NET AJAX'/><category term='Visual Studio 2008'/><category term='jQuery'/><category term='SQL Server 2008'/><category term='SQL'/><category term='ASP.NET'/><title type='text'>Dheeraj's Tech Wiki</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dheerajstechwiki.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://dheerajstechwiki.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Dheeraj Kumar Mekala</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-415342209654647207.post-8304169421216059870</id><published>2010-06-06T16:38:00.000-07:00</published><updated>2010-06-06T19:16:48.468-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='jQuery'/><title type='text'>Multi-line Textbox Character Counter</title><content type='html'>In this article you would learn how create an ASP.NET user control with jQuery which displays the character count of a multi-line textbox below it. The user control takes the character limit as one of its properties. Below is the markup of my usercontrol:&lt;br /&gt;&lt;br /&gt;&lt;pre name="code" class="html"&gt;&lt;asp:TextBox ID="tbMultiLine" TextMode="MultiLine" Width="300px"&lt;br /&gt; Height="50px" runat="server"&gt;&lt;/asp:TextBox&gt;&lt;br /&gt;&lt;br /&gt;&lt;asp:Label ID="lblCharCount" runat="server"&gt;&lt;/asp:Label&gt;&lt;br /&gt;&lt;asp:HiddenField ID="hdnCharacterLimit" runat="server" /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Below is the jQuery code I have used in the user control:&lt;br /&gt;&lt;br /&gt;&lt;pre name="code" class="js"&gt;$(document).ready(function() {&lt;br /&gt;        $('#&lt;%=tbMultiLine.ClientID %&gt;').keyup(function(e) {&lt;br /&gt;            var limit = $('#&lt;%=hdnCharacterLimit.ClientID %&gt;').val();&lt;br /&gt;            var tbLength = $(this).val().length;&lt;br /&gt;            if (tbLength &gt; limit) {&lt;br /&gt;                this.value = this.value.substring(0, limit);&lt;br /&gt;                e.preventDefault();&lt;br /&gt;            }&lt;br /&gt;            $('#&lt;%=lblCharCount.ClientID %&gt;').show();&lt;br /&gt;            $('#&lt;%=lblCharCount.ClientID %&gt;').text($(this).val().length + '/' + $('#&lt;%=hdnCharacterLimit.ClientID %&gt;').val() + ' characters');&lt;br /&gt;        });&lt;br /&gt;    });&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;When the DOM is ready I add a keyup event to the multi-line textbox and get the character limit from a hidden field in the user control. I then check to see if the character count is greater than the limit and if so then I remove the additional characters and prevent the default action for the textbox.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://dkmekal.com/charactercountdemo.aspx" target="_blank"&gt;Demo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://dkmekal.com/Downloads/TextboxCharacterCount.zip"&gt;Download Code&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2010%2f06%2fmulti-line-textbox-character-counter.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2010%2f06%2fmulti-line-textbox-character-counter.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a rev="vote-for" href="http://dotnetshoutout.com/Multi-line-Textbox-Character-Counter"&gt;&lt;img alt="Shout it" src="http://dotnetshoutout.com/image.axd?url=http%3A%2F%2Fdheerajstechwiki.blogspot.com%2F2010%2F06%2Fmulti-line-textbox-character-counter.html" style="border:0px"/&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/415342209654647207-8304169421216059870?l=dheerajstechwiki.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dheerajstechwiki.blogspot.com/feeds/8304169421216059870/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dheerajstechwiki.blogspot.com/2010/06/multi-line-textbox-character-counter.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/8304169421216059870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/8304169421216059870'/><link rel='alternate' type='text/html' href='http://dheerajstechwiki.blogspot.com/2010/06/multi-line-textbox-character-counter.html' title='Multi-line Textbox Character Counter'/><author><name>Dheeraj Kumar Mekala</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-415342209654647207.post-8863043382563734514</id><published>2010-02-02T12:58:00.000-08:00</published><updated>2010-06-06T19:09:58.176-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET AJAX'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>Script Manager VS Toolkit Script Manager</title><content type='html'>Recently I noticed that there was a control named ToolkitScriptManager in the ASP.NET AJAX Control Toolkit and I was wondering how it was different from the regular ScriptManager. After reading &lt;a href="http://blogs.msdn.com/delay/archive/2007/06/11/script-combining-made-easy-overview-of-the-ajax-control-toolkit-s-toolkitscriptmanager.aspx"&gt;this&lt;/a&gt; wonderful blogpost I came to know that ToolkitScriptManager will combine all the ASP.NET AJAX scripts by default. I decided to run a small test to see how exactly this effects performance and the results were quite impressive. I first created a simple page with the ScriptManager and the AJAX Calendar Extender control. Below is the screenshot from firebug:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://dkmekal.com/blogimages/WithScriptManager.png" alt="Output" /&gt;&lt;br /&gt;&lt;br /&gt;As you can see from the above screenshot that with the ScriptManager control we are making 15 requests to the server, page size is 168.4kb and it takes 5.62 seconds to load this page. Now lets see how ToolScriptManager changes these numbers:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://dkmekal.com/blogimages/WithToolScriptManager.png" alt="Output" /&gt;&lt;br /&gt;&lt;br /&gt;Now the you can see that the number of requests have come down to 7, page size is 124kb and it takes only 4.03 seconds to load this page.&lt;br /&gt;&lt;br /&gt;All you need to do is just &lt;b&gt;REPLACE&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre name="code" class="html"&gt;&lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt;&lt;br /&gt;&lt;/asp:ScriptManager&gt;&lt;br /&gt;&lt;/pre&gt;&lt;b&gt;WITH&lt;/b&gt;&lt;br /&gt;&lt;pre name="code" class="html"&gt;&lt;ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"&gt;&lt;br /&gt;&lt;/ajaxToolkit:ToolkitScriptManager&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;b&gt;Conclusion:&lt;/b&gt; Imagine if you are saving 8 requests, 44kb of data and 1.59 seconds of load time on a page with a single AJAX Control. How much performance gain would you get on a page with update panels and many AJAX controls?&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2010%2f02%2fscript-manager-vs-toolkit-script.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2010%2f02%2fscript-manager-vs-toolkit-script.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/415342209654647207-8863043382563734514?l=dheerajstechwiki.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dheerajstechwiki.blogspot.com/feeds/8863043382563734514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dheerajstechwiki.blogspot.com/2010/02/script-manager-vs-toolkit-script.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/8863043382563734514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/8863043382563734514'/><link rel='alternate' type='text/html' href='http://dheerajstechwiki.blogspot.com/2010/02/script-manager-vs-toolkit-script.html' title='Script Manager VS Toolkit Script Manager'/><author><name>Dheeraj Kumar Mekala</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-415342209654647207.post-4600686499503748762</id><published>2009-12-31T20:28:00.000-08:00</published><updated>2010-05-28T20:32:06.721-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>How to get all non-nullable column names, types and lengths in a SQL Server database table?</title><content type='html'>I was working on a SQL Server database table which had around 100 columns and I wanted to insert a new row into that table. But in order to do that I had to know all the non-nullable column names, types and lengths in that table and below is the query I have used to achieve that: &lt;br /&gt;&lt;br /&gt;&lt;pre class="sql" name="code"&gt;select COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH &lt;br /&gt;from information_schema.columns&lt;br /&gt;where table_name = 'TABLE_NAME'&lt;br /&gt;AND IS_NULLABLE = 'NO'&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2009%2f12%2fgetting-all-non-nullable-comumn-names.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2009%2f12%2fgetting-all-non-nullable-comumn-names.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/415342209654647207-4600686499503748762?l=dheerajstechwiki.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dheerajstechwiki.blogspot.com/feeds/4600686499503748762/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/12/getting-all-non-nullable-comumn-names.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/4600686499503748762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/4600686499503748762'/><link rel='alternate' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/12/getting-all-non-nullable-comumn-names.html' title='How to get all non-nullable column names, types and lengths in a SQL Server database table?'/><author><name>Dheeraj Kumar Mekala</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-415342209654647207.post-5536130996428093048</id><published>2009-12-06T22:31:00.000-08:00</published><updated>2010-06-06T19:10:28.813-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET AJAX'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>Dynamically Adding Tab Panels To An ASP.NET AJAX Tab Container</title><content type='html'>I wanted to add some Tab Panels to my ASP.NET AJAX Tab container from my code behind file. Below is the code on my .aspx page:&lt;br /&gt;&lt;br /&gt;&lt;pre name="code" class="html"&gt;&lt;ajaxToolkit:TabContainer ID="abContainer1" runat="server" Visible="true"&gt;&lt;br /&gt;&lt;/ajaxToolkit:TabContainer&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Blow is my code in the aspx.cs file to add two new tab panels to the tab container:&lt;br /&gt;&lt;br /&gt;&lt;pre class="csharp" name="code"&gt;TabPanel t1 = new TabPanel();&lt;br /&gt;            t1.ID = "Tab1";&lt;br /&gt;            t1.HeaderText = "Tab:1";&lt;br /&gt;&lt;br /&gt;            TabPanel t2 = new TabPanel();&lt;br /&gt;            t2.ID = "Tab2";&lt;br /&gt;            t2.HeaderText = "Tab:2";&lt;br /&gt;&lt;br /&gt;            TabContainer1.Tabs.Add(t1);&lt;br /&gt;            TabContainer1.Tabs.Add(t2);&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Pretty straight forward stuff. But to my astonishment when I ran the page I couldn't see my tab control in the browser. Below is the HTML generated for my two tab panels:&lt;br /&gt;&lt;br /&gt;&lt;pre name="code" class="html"&gt;&amp;lt;div id=&amp;quot;TabContainer1_Tab1&amp;quot; class=&amp;quot;ajax__tab_panel&amp;quot; style=&amp;quot;display:none;visibility:hidden;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;div id=&amp;quot;TabContainer1_Tab2&amp;quot;; class=&amp;quot;ajax__tab_panel&amp;quot; style=&amp;quot;display:none;visibility:hidden;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;As you can see from the above HTML that my two tab panels visibility is set to hidden by default. In order make the tab control visible we have to set the ActiveTabIndex for thr tab container as follows:&lt;br /&gt;&lt;br /&gt;&lt;pre class="csharp" name="code"&gt;TabContainer1.ActiveTabIndex = 0;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2009%2f12%2fdynamically-adding-tab-panels-into.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f2009%2f12%2fdynamically-adding-tab-panels-into.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/415342209654647207-5536130996428093048?l=dheerajstechwiki.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dheerajstechwiki.blogspot.com/feeds/5536130996428093048/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/12/dynamically-adding-tab-panels-into.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/5536130996428093048'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/5536130996428093048'/><link rel='alternate' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/12/dynamically-adding-tab-panels-into.html' title='Dynamically Adding Tab Panels To An ASP.NET AJAX Tab Container'/><author><name>Dheeraj Kumar Mekala</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-415342209654647207.post-6649688962003773782</id><published>2009-11-08T21:39:00.000-08:00</published><updated>2010-06-06T19:11:15.003-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server 2008'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio 2008'/><title type='text'>How to Fix "Connections to SQL Server files (*.mdf) require SQL Server Express 2005 to function properly."</title><content type='html'>I have a 64-bit PC with Windows 7 and Visual Studio 2008 with SP1 installed on it. When I tried to add new a SQL Server 2008 express database into the App_Data folder of my Website project I got the following error:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;i&gt;"Connections to SQL Server files (*.mdf) require SQL Server Express 2005 to function properly. Please verify the installation of the component of download from the URL:&lt;br /&gt;http://go.microsoft.com/fwlink/?LinkId=49251"&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;This problem occurs because Visual Studio 2008 SP1 incorrectly detects some registry keys for a 64-bit installation of SQL Server Express 2008. To fix this issue I had to download a hotfix for Visual Studio 2008 which is available &lt;a href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=957944"&gt;HERE&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/415342209654647207-6649688962003773782?l=dheerajstechwiki.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dheerajstechwiki.blogspot.com/feeds/6649688962003773782/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/11/fixing-connections-to-sql-server-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/6649688962003773782'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/6649688962003773782'/><link rel='alternate' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/11/fixing-connections-to-sql-server-files.html' title='How to Fix &quot;Connections to SQL Server files (*.mdf) require SQL Server Express 2005 to function properly.&quot;'/><author><name>Dheeraj Kumar Mekala</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-415342209654647207.post-1516118000975934420</id><published>2009-11-01T15:23:00.000-08:00</published><updated>2010-06-06T19:11:39.692-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='LINQ'/><title type='text'>Using LINQ With Strings</title><content type='html'>LINQ can be used to perform query operations on objects which implement the IEnumerable&amp;lt;T&amp;gt;. Since the String class implements the IEnumerable&amp;lt;char&amp;gt; interface we can perform various string operations using LINQ. In the below example I have used LINQ to extract the common characters in two strings.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; For some weired reason Visual Studio doesn't show the LINQ extension methods in the intellisense for string objects.   &lt;br /&gt;&lt;br /&gt;&lt;pre class="c#" name="code"&gt;string str1 = "abc";&lt;br /&gt; string str2 = "bcd";&lt;br /&gt;&lt;br /&gt;Func&lt;string,char,bool&gt; match = (s,c) =&gt; s.Contains(c);&lt;br /&gt;&lt;br /&gt; var chars = from c in str1&lt;br /&gt;             where match(str2, c)&lt;br /&gt;             select c;&lt;br /&gt;&lt;br /&gt; foreach (var c in chars)&lt;br /&gt;  {&lt;br /&gt;    Console.WriteLine(c);&lt;br /&gt;  }&lt;br /&gt; Console.Read();&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Here is the Output:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://dkmekal.com/blogimages/linqtostrings.jpg" alt="Output" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdheerajstechwiki.blogspot.com%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/415342209654647207-1516118000975934420?l=dheerajstechwiki.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dheerajstechwiki.blogspot.com/feeds/1516118000975934420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/11/using-linq-with-strings.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/1516118000975934420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/415342209654647207/posts/default/1516118000975934420'/><link rel='alternate' type='text/html' href='http://dheerajstechwiki.blogspot.com/2009/11/using-linq-with-strings.html' title='Using LINQ With Strings'/><author><name>Dheeraj Kumar Mekala</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
