<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sampath Kumar&#039;s Blog</title>
	<atom:link href="http://sampathkk.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sampathkk.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sat, 19 Nov 2011 04:30:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sampathkk.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sampath Kumar&#039;s Blog</title>
		<link>http://sampathkk.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sampathkk.wordpress.com/osd.xml" title="Sampath Kumar&#039;s Blog" />
	<atom:link rel='hub' href='http://sampathkk.wordpress.com/?pushpress=hub'/>
		<item>
		<title>ASP.NET Single Required Field Validator for multiple fields</title>
		<link>http://sampathkk.wordpress.com/2011/11/17/asp-net-single-required-field-validator-for-multiple-fields/</link>
		<comments>http://sampathkk.wordpress.com/2011/11/17/asp-net-single-required-field-validator-for-multiple-fields/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 18:26:04 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[custom validator]]></category>
		<category><![CDATA[Required field validation]]></category>
		<category><![CDATA[Validation in ASP.NET]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=48</guid>
		<description><![CDATA[We often face this scenario to have one validator control (to show one error message) for a group of text-boxes. In my case, I have a phone number field which is a combination of three independent text-boxes. And I have to validate these 3 independent text-boxes as a single unit. Show only ONE error message [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=48&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We often face this scenario to have one validator control (to show one error message) for a group of text-boxes.</p>
<p>In my case, I have a phone number field which is a combination of three independent text-boxes. And I have to validate these 3 independent text-boxes as a single unit.</p>
<p>Show only ONE error message if any (one or more) of the three text-boxes is empty</p>
<p><strong>Solution</strong>:</p>
<p>I have used CustomValidator control of asp.net to achieve the result. The aspx page has the following code:</p>
<p>&lt;tr&gt;<br />
&lt;td&gt;<br />
Phone-Number<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;asp:TextBox ID=&#8221;Phone1&#8243; runat=&#8221;server&#8221; MaxLength=&#8221;3&#8243;&gt;&lt;/asp:TextBox&gt;<br />
-<br />
&lt;asp:TextBox ID=&#8221;Phone2&#8243; runat=&#8221;server&#8221; MaxLength=&#8221;3&#8243;&gt;&lt;/asp:TextBox&gt;<br />
-<br />
&lt;asp:TextBox ID=&#8221;Phone3&#8243; runat=&#8221;server&#8221; MaxLength=&#8221;3&#8243;&gt;&lt;/asp:TextBox&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;</p>
<p>&lt;tr&gt;<br />
&lt;td&gt;<br />
&amp;nbsp;<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
<strong>&lt;asp:CustomValidator runat=&#8221;server&#8221; ID=&#8221;custValidator&#8221; ClientValidationFunction=&#8221;ClientValidate&#8221;</strong><br />
<strong> Display=&#8221;Dynamic&#8221; ErrorMessage=&#8221;Not a valid phone number&#8221; ForeColor=&#8221;red&#8221; Font-Name=&#8221;verdana&#8221; propertyOne=&#8221;Phone1&#8243; propertyTwo=&#8221;Phone2&#8243; propertyThree=&#8221;Phone3&#8243; /&gt;</strong><br />
&lt;/td&gt;<br />
&lt;/tr&gt;</p>
<p>The above code has three text-boxes (Phone1, Phone2, Phone3) and a CustomValidator control (custValidator) which has got one property &#8220;ClientValidationFunction&#8221; whose value is the name of  a javascript function which has the validation logic.</p>
<p>This validator also contains three custom properties (you don&#8217;t find them in intellisense; just add them) each one for specifying the each text-box id of  phone number field.</p>
<p>These custom properties can be accessed by the client-side validation function. So this is the way we can send custom parameters to the client-side validation function from the CustomValidator.</p>
<p>The below is the code for javascript function:</p>
<p>function ClientValidate(source, arguments) {</p>
<p>if (document.getElementById(source.propertyOne).value.length == 0 ||<br />
document.getElementById(source.propertyTwo).value.length == 0 ||<br />
document.getElementById(source.propertyThree).value.length == 0)<br />
arguments.IsValid = false;</p>
<p>else<br />
arguments.IsValid = true;<br />
}</p>
<p>The above JS function accesses the custom properties (source.propertyOne) and verifies if the phone number fields contain any data and finally sets &#8220;arguments.IsValid&#8221; to true/false based on condition.</p>
<p>If set to false, page is not valid and will not be submitted.</p>
<p><strong>VALIDATE ON TEXT CHANGE EVENTS</strong></p>
<p>The above code works fine and shows error message if the phone number  field is left empty and trying to submit the form. But what we want now is that when user moves focus from any of three phone number text-boxes, validation function should be triggered and show/hide the error message accordingly. This is what happens for general RequiredFieldValidator.</p>
<p>To handle this scenario, we have to write one more javascript function and add one extra property to the three independent phone number text-boxes. Below is the updated code.</p>
<p>&lt;asp:TextBox ID=&#8221;Phone1&#8243; runat=&#8221;server&#8221; MaxLength=&#8221;3&#8243; CausesValidation=&#8221;true&#8221; OnChange=&#8221;txtZipOnChange(&#8216;custValidator&#8217;)&#8221;&gt;&lt;/asp:TextBox&gt;<br />
-<br />
&lt;asp:TextBox ID=&#8221;Phone2&#8243; runat=&#8221;server&#8221; MaxLength=&#8221;3&#8243; CausesValidation=&#8221;true&#8221; OnChange=&#8221;txtZipOnChange(&#8216;custValidator&#8217;)&#8221;&gt;&lt;/asp:TextBox&gt;<br />
-<br />
&lt;asp:TextBox ID=&#8221;Phone3&#8243; runat=&#8221;server&#8221; MaxLength=&#8221;3&#8243; CausesValidation=&#8221;true&#8221; OnChange=&#8221;txtZipOnChange(&#8216;custValidator&#8217;)&#8221;&gt;&lt;/asp:TextBox&gt;</p>
<p>Each text-box has now got &#8220;OnChange&#8221; event with a  javscript function name as the value. So this JS function will be called everytime there is a change in any of the phone number text-box fields.</p>
<p>Below is the javascript function:</p>
<p>function txtZipOnChange(validatorId) {<br />
var i;<br />
for (i = 0; i &lt; Page_Validators.length; i++) {<br />
if (Page_Validators[i].id == validatorId)<br />
break;<br />
}<br />
ValidatorValidate(Page_Validators[i], null, null);<br />
}</p>
<p>If you observe the above code, I am using the asp.net framework generated function &#8220;ValidatorValidate&#8221; to trigger the validation of custom validator.</p>
<p>And the Page_Validators array is also generated by asp.net framework which maintains all the validators on the page. In the above JS code I am finding the correct Page_Validators entry and triggering validation of that validator.</p>
<p>Below are the screenshot of above example:</p>
<p><a href="http://sampathkk.files.wordpress.com/2011/11/phonenumbervalidation.png"><img class="alignnone size-full wp-image-56" title="PhoneNumberValidation" src="http://sampathkk.files.wordpress.com/2011/11/phonenumbervalidation.png?w=450&#038;h=106" alt="" width="450" height="106" /></a></p>
<p><a href="http://sampathkk.files.wordpress.com/2011/11/phonenumbervalidation21.png"><img class="alignnone size-full wp-image-59" title="PhoneNumberValidation2" src="http://sampathkk.files.wordpress.com/2011/11/phonenumbervalidation21.png?w=450&#038;h=111" alt="" width="450" height="111" /></a></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=48&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2011/11/17/asp-net-single-required-field-validator-for-multiple-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>

		<media:content url="http://sampathkk.files.wordpress.com/2011/11/phonenumbervalidation.png" medium="image">
			<media:title type="html">PhoneNumberValidation</media:title>
		</media:content>

		<media:content url="http://sampathkk.files.wordpress.com/2011/11/phonenumbervalidation21.png" medium="image">
			<media:title type="html">PhoneNumberValidation2</media:title>
		</media:content>
	</item>
		<item>
		<title>Multiple file upload control in ASP.NET using JavaScript</title>
		<link>http://sampathkk.wordpress.com/2011/08/06/multiple-file-upload-control-in-asp-net-using-javascript/</link>
		<comments>http://sampathkk.wordpress.com/2011/08/06/multiple-file-upload-control-in-asp-net-using-javascript/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 17:34:16 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=38</guid>
		<description><![CDATA[Recently I came across a requirement to provide an option for user to upload multiple files (One or More). We have &#60;asp:FileUpload&#62; control in asp.net using which we can upload one file at a time. By using a single &#60;asp:FileUpload&#62; control on aspx page and few lines of  java script I could solve the purpose. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=38&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I came across a requirement to provide an option for user to upload multiple files (One or More).</p>
<p>We have &lt;asp:FileUpload&gt; control in asp.net using which we can upload one file at a time.</p>
<p>By using a single &lt;asp:FileUpload&gt; control on aspx page and few lines of  java script I could solve the purpose.</p>
<p>Followed these steps to achieve the requirement:</p>
<p><strong>Step 1:</strong></p>
<p>Placed below code on .aspx page.</p>
<pre>         &lt;div&gt;
            &lt;span&gt;
                &lt;asp:FileUpload ID="FileUploadCtrl0" runat="server" /&gt;
                &lt;br /&gt;
            &lt;/span&gt;
            &lt;input type="button" value="Add" onclick="AddFileUpload()" /&gt;
            &lt;asp:Button ID="btnUpload" runat="server" Text="Upload Attachments" OnClick="btnUpload_Click" /&gt;
        &lt;/div&gt;</pre>
<ul>
<li>One asp:FileUpload control is placed on the aspx page (which always appears on the page by default)</li>
<li>One HTML button (Add)  to add additional file upload controls. This is done by calling a javascript method &#8220;AddFileUpload()&#8221;</li>
<li>Finally one asp:Button to handle uploading the attached documents to target location(In my case it is file system)</li>
</ul>
<p><strong>Step 2:</strong></p>
<p>Here is the code for &#8220;AddFileUpload()&#8221; javascript method. I am using JQuery here. So dont forget to include reference to Jquery file.</p>
<pre>   &lt;script type="text/javascript"&gt;
        var counter = 0;
        function AddFileUpload() {
            $('.fileUploadSpan').append(
            $('&lt;span&gt;').append($('&lt;input/&gt;').attr('type', 'file').attr('name', 'FileUploadCtrl' + ++counter).attr('id', 'FileUploadCtrl' + counter), $('&lt;input/&gt;').attr('type', 'button').attr('value', 'Remove').click(function () { $(this).parent().remove(); --counter; }), $('&lt;br/&gt;'))
            );
        }
    &lt;/script&gt;</pre>
<ul>
<li>The javascript function &#8220;AddFileUpload&#8221; adds a file upload control and a remove button. Remove button is used to remove the associated file upload control.</li>
</ul>
<p><strong>Step 3:</strong></p>
<p>Finally implement aspx.Button handler(btnUpload_Click)</p>
<pre>        protected void btnUpload_Click(object sender, EventArgs e)
        {
                // Get the HttpFileCollection
                HttpFileCollection hfc = Request.Files;
                for (int i = 0; i &lt; hfc.Count; i++)
                {
                    HttpPostedFile hpf = hfc[i];
                    if (hpf.ContentLength &gt; 0)
                    {
                        hpf.SaveAs("C:\\Temp" + "\\" +
                          System.IO.Path.GetFileName(hpf.FileName));
                        Response.Write("File: " + hpf.FileName + " Size: " +
                            hpf.ContentLength + " Type: " + hpf.ContentType + " Uploaded Successfully");
                    }
                }
        }
<span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13px;line-height:19px;white-space:normal;">Finally the output looks like this:</span></pre>
<p style="text-align:center;"><a href="http://sampathkk.files.wordpress.com/2011/08/multifileupload.png"><img class="size-medium wp-image-40 aligncenter" title="MultiFileUpload" src="http://sampathkk.files.wordpress.com/2011/08/multifileupload.png?w=300&#038;h=161" alt="The output of multifile upload control" width="300" height="161" /></a></p>
<p>And this can still be extended to look very good by putting image buttons instead of normal buttons <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=38&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2011/08/06/multiple-file-upload-control-in-asp-net-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>

		<media:content url="http://sampathkk.files.wordpress.com/2011/08/multifileupload.png?w=300" medium="image">
			<media:title type="html">MultiFileUpload</media:title>
		</media:content>
	</item>
		<item>
		<title>Insert People picker value using web service in SharePoint</title>
		<link>http://sampathkk.wordpress.com/2010/03/30/insert-people-picker-value-using-web-service-in-sharepoint/</link>
		<comments>http://sampathkk.wordpress.com/2010/03/30/insert-people-picker-value-using-web-service-in-sharepoint/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 13:58:06 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=34</guid>
		<description><![CDATA[When you want to insert a value for people picker control using a web service, the format should be -1;#&#60;DomainName&#62;\&#60;UserName&#62;. For ex: if &#8220;PRESS&#8221; is a domain and &#8220;SAMPATHK&#8221; is the user name then the format should be like, -1;PRESS\SAMPATHK<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=34&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you want to insert a value for people picker control using a web service, the format should be -1;#&lt;DomainName&gt;\&lt;UserName&gt;.</p>
<p>For ex: if &#8220;PRESS&#8221; is a domain and &#8220;SAMPATHK&#8221; is the user name then the format should be like, <strong>-1;PRESS\SAMPATHK</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=34&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2010/03/30/insert-people-picker-value-using-web-service-in-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
		<item>
		<title>ClientID does not work in .js file</title>
		<link>http://sampathkk.wordpress.com/2010/01/14/clientid-does-not-work-in-js-file/</link>
		<comments>http://sampathkk.wordpress.com/2010/01/14/clientid-does-not-work-in-js-file/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 15:48:08 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=31</guid>
		<description><![CDATA[The ClientID property does not work in .js files. So if you want to use ClientID property in javascript so do include that script in the aspx page itself. In seperate js files ClientID does not work.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=31&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The ClientID property does not work in .js files. So if you want to use ClientID property in javascript so do include that script in the aspx page itself. In seperate js files ClientID does not work.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=31&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2010/01/14/clientid-does-not-work-in-js-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
		<item>
		<title>ClientID for a control inside User Control</title>
		<link>http://sampathkk.wordpress.com/2010/01/14/clientid-for-a-control-inside-user-control/</link>
		<comments>http://sampathkk.wordpress.com/2010/01/14/clientid-for-a-control-inside-user-control/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 15:42:00 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=28</guid>
		<description><![CDATA[Assume that you have a user control with ID  &#8220;Login-Control&#8221; on a page. In that login control you might be having two text boxes (TB1, TB2) and two lables (LB1, LB2) and one button(BT1). If you want to get the clientID for TB1 at the page level you can&#8217;t use like &#60;%= TB1.ClientID %&#62; (It does not work). Here [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=28&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Assume that you have a user control with ID  &#8220;Login-Control&#8221; on a page. In that login control you might be having two text boxes (TB1, TB2) and two lables (LB1, LB2) and one button(BT1). If you want to get the clientID for TB1 at the page level you can&#8217;t use like &lt;%= TB1.ClientID %&gt; (It does not work). Here you should go for the following statement:</p>
<p>Login-Control.FindControl(&#8220;TB1&#8243;).ClientID</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=28&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2010/01/14/clientid-for-a-control-inside-user-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Classes and objects in javascript</title>
		<link>http://sampathkk.wordpress.com/2009/12/29/classes-and-objects-in-javascript/</link>
		<comments>http://sampathkk.wordpress.com/2009/12/29/classes-and-objects-in-javascript/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 09:06:44 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=24</guid>
		<description><![CDATA[Go through the link http://livingmachines.net/tag/creating-javascript-classes-series/ and learn how to create classes and objects in Javascript.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=24&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Go through the link <a href="http://livingmachines.net/tag/creating-javascript-classes-series/">http://livingmachines.net/tag/creating-javascript-classes-series/</a></p>
<p>and learn how to create classes and objects in Javascript.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=24&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2009/12/29/classes-and-objects-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
		<item>
		<title>OnPreInit Event in Page Life Cycle</title>
		<link>http://sampathkk.wordpress.com/2009/12/09/onpreinit-event-in-page-life-cycle/</link>
		<comments>http://sampathkk.wordpress.com/2009/12/09/onpreinit-event-in-page-life-cycle/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 12:55:21 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=22</guid>
		<description><![CDATA[This event occurs only for the Page class and UserControls/MasterPages do not have this method to override. Note that PreInit() is the only event where we can set themes programmatically. Special Case with MasterPages It is important to note that Master Page is treated like a control in the Content Pages. So if a Page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=22&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ol>
<li>This event occurs only for the Page class and UserControls/MasterPages do not have this method to override.</li>
<li>Note that PreInit() is the only event where we can set themes programmatically.</li>
</ol>
<p><strong>Special Case with MasterPages</strong></p>
<ol>
<li>It is important to note that Master Page is treated like a control in the Content Pages.</li>
<li>So if a Page has a  Master Page associated with it, then the controls on the page will not be initialized and would be null in this stage. Only after the Init() event starts,<br />
you can access these controls directly from the page class.</li>
<li> The reason being that all controls placed in the Content Page are within a ContentPlaceholder which is a child control of a MasterPage. Now Master Page is merged and treated like a control in the Content Pages. As I mentioned earlier, all events except the Init() and Unload() are fired from outermost to the innermost control. So PreInit() in the Page is the first event to fire but User Controls or MasterPage (which is itself a Usercontrol) do not have any PreInit event . Therefore in the Page_PreInit() method, neither the MasterPage nor any user control has been initialized and only the controls inside the Page class are set to their default values. Only after the Page_PreInit() event the Init() events of other controls fire up.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=22&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2009/12/09/onpreinit-event-in-page-life-cycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Difference between ID, UniqueID, ClientID</title>
		<link>http://sampathkk.wordpress.com/2009/12/03/difference-between-id-uniqueid-clientid/</link>
		<comments>http://sampathkk.wordpress.com/2009/12/03/difference-between-id-uniqueid-clientid/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 16:20:11 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=14</guid>
		<description><![CDATA[In this post i will explain you the difference between RegularId, clientID, uniqueID properties in ASP.NET. Regular ID: Its a normal id that we would be giving to each control that we add to the page. This ID is helpful for you to refer to the control in the code-behind (aspx.cs). For coding it on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=14&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this post i will explain you the difference between RegularId, clientID, uniqueID properties in ASP.NET.</p>
<p><strong>Regular ID:</strong></p>
<p>  Its a normal id that we would be giving to each control that we add to the page. </p>
<p>  This ID is helpful for you to refer to the control in the code-behind (aspx.cs). For coding it on server side.</p>
<p><strong>Unique ID:</strong></p>
<p>  Its a unique id for the control across the page. For example, assume that you have a user control in which you have one label. If you have added that user control twice on to the page, for two labels in two different user controls (UC1, UC2) we have the same ID known as &#8220;Label1&#8243;. But to differentiate between those two labels, ASP.NET maintains a unique ID for each label as &#8220;UC1$Label1&#8243; and &#8220;UC2$Label1&#8243;. So Unique ID is a hierarchically qualified name. And the same thing would be assigned to the &#8220;name&#8221; property of the corresponding HTML tag. <em>Here in the unique id, $ (dollar) character is used to separate the parent and child id.</em></p>
<p><strong>Client ID:</strong></p>
<p>  <em>Its also similar to unique id but it separates the parent and child ids using the _ (underscore) character.</em> Then why we have this ClientID. The reason is that it would be assigned to the &#8220;id&#8221; attribute of the corresponding HTML tag on the client side. So if you want to access the control in the java script you can make use of Client ID property of a control.<br />
<strong>Ex:<br />
  var label = document.getElementById(&#8216;&lt;%= Label1.ClientID%&gt;&#8217;);</strong></p>
<p>If you have added a label control onto the page then three properties of that label like ID, UniqueID, ClientID would be having the same value &#8220;Label1&#8243;.</p>
<p>If you want to explore more on this : go to <a href="http://dotnetslackers.com/ASP_NET/re-113573_The_difference_between_ID_ClientID_and_UniqueID.aspx"> here </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=14&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2009/12/03/difference-between-id-uniqueid-clientid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
		<item>
		<title>Interested in solving mathematical puzzles?</title>
		<link>http://sampathkk.wordpress.com/2009/11/17/interested-in-solving-mathematical-puzzles/</link>
		<comments>http://sampathkk.wordpress.com/2009/11/17/interested-in-solving-mathematical-puzzles/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 05:21:40 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=12</guid>
		<description><![CDATA[You can visit this site for good puzzles.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=12&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can visit <a href="http://projecteuler.net/index.php">this site </a> for good puzzles.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=12&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2009/11/17/interested-in-solving-mathematical-puzzles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
		<item>
		<title>HeadFirst Book Collection</title>
		<link>http://sampathkk.wordpress.com/2009/11/16/headfirst-book-collection/</link>
		<comments>http://sampathkk.wordpress.com/2009/11/16/headfirst-book-collection/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 06:02:21 +0000</pubDate>
		<dc:creator>sampathkk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sampathkk.wordpress.com/?p=8</guid>
		<description><![CDATA[SQL : Download &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=8&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>SQL : </strong> <a href="http://rapidshare.com/files/115249808/Head_First_SQL_Your_Brain_on_SQL_--_A_Learner_s_Guide.rar"> Download </a></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sampathkk.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sampathkk.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sampathkk.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sampathkk.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sampathkk.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sampathkk.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sampathkk.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sampathkk.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sampathkk.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sampathkk.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sampathkk.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sampathkk.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sampathkk.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sampathkk.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sampathkk.wordpress.com&amp;blog=10402207&amp;post=8&amp;subd=sampathkk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sampathkk.wordpress.com/2009/11/16/headfirst-book-collection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e91a13c209e9223367e6f7bf8cc34dc8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sampathkk</media:title>
		</media:content>
	</item>
	</channel>
</rss>
