<?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>Indian Developer</title>
	<atom:link href="http://indiandeve.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiandeve.wordpress.com</link>
	<description>Lets code, lets play !!!</description>
	<lastBuildDate>Mon, 17 Oct 2011 06:29:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='indiandeve.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Indian Developer</title>
		<link>http://indiandeve.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://indiandeve.wordpress.com/osd.xml" title="Indian Developer" />
	<atom:link rel='hub' href='http://indiandeve.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MS .Net C# winform UI related tips:Increasing the width of label according to text width (winform Label wordwrap)</title>
		<link>http://indiandeve.wordpress.com/2010/07/23/ms-net-c-winform-ui-related-tipsincreasing-the-width-of-label-according-to-text-width-winform-label-wordwrap/</link>
		<comments>http://indiandeve.wordpress.com/2010/07/23/ms-net-c-winform-ui-related-tipsincreasing-the-width-of-label-according-to-text-width-winform-label-wordwrap/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 10:35:24 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[tips & tricks]]></category>
		<category><![CDATA[c# .net winform Label]]></category>
		<category><![CDATA[winform c# label autowrap]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=168</guid>
		<description><![CDATA[If you want Label to grow as its text grows:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=168&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want Label to grow as its text grows:</p>
<pre class="brush: plain;">Label.AutoSize=true;</pre>
<p>(this will make your label to grow in width)<br />
if you want text to get wrapped and your label to become, multiline automatically:</p>
<pre class="brush: plain;">
Label.MaximumSize = new Size(max_width_of_label, 0);
Label.AutoSize=true;
</pre>
<p>(in above label will grow but will not take care of other control, i mean it will not care about them, just try your self and see what happens)</p>
<p>You may also like to see:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/388937/determine-label-size-based-upon-amount-of-text-and-font-size-in-winforms-c">Determine Label Size based upon amount of text and font size in Winforms/C#</a></li>
<li><a href="http://blogs.msdn.com/b/jfoscoding/archive/2005/10/07/478299.aspx">A beautiful discussion on Label</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/168/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=168&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2010/07/23/ms-net-c-winform-ui-related-tipsincreasing-the-width-of-label-according-to-text-width-winform-label-wordwrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP .Net 2003 : Error while trying to run project: Unable to start debugging on the web server. Server side-error occurred on sending debug HTTP request.(HTTP/1.1 500 Internal Server Error)</title>
		<link>http://indiandeve.wordpress.com/2010/06/02/asp-net-2003-error-while-trying-to-run-project-unable-to-start-debugging-on-the-web-server-server-side-error-occurred-on-sending-debug-http-request-http1-1-500-internal-server-error/</link>
		<comments>http://indiandeve.wordpress.com/2010/06/02/asp-net-2003-error-while-trying-to-run-project-unable-to-start-debugging-on-the-web-server-server-side-error-occurred-on-sending-debug-http-request-http1-1-500-internal-server-error/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 04:37:23 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[asp .net 2003]]></category>
		<category><![CDATA[trouble shooting]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=160</guid>
		<description><![CDATA[The Web server reported the following error when attempting to create or open the Web project located at the following URL: 'http://localhost/WebApplication1'. 'HTTP/1.1 500 Server Error'.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=160&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">
<div id="_mcePaste">My friend copied his project from another machine to his machine, project was in asp .net 2003 fromat, which was working well in old machine. But when he tried to run it(for debugging purpose) from visual studio 2003 it gave following error :</div>
<div></div>
<div style="border:dotted gray;padding:2px;">
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div>Microsoft Development Environment</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div>Error while trying to run project: Unable to start debugging on the web server. Server side-error occurred on sending debug HTTP request.</div>
<div>Make sure the server is operating correctly. Verify there are no syntax errors in web.config by doing a Debug.Start Without Debugging. You may also want to refer to the ASP.NET and ATL Server debugging topic in the online documentation.</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div>OK   Help</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
</div>
<div id="_mcePaste"></div>
<div>Even we tried to run using url http:\\localhost\virtual_dir_name\page.aspx, but it was still giving error something like &#8216;HTTP/1.1 500 Internal Server Error&#8217;. Finally after searching over net we found following solution at byte.com.</div>
<div id="_mcePaste">For us second solution worked. We did following step:</div>
<div id="_mcePaste">1.Deleted ASPNET windows user account (from control panel-&gt;User Accounts-&gt;Users Tab)</div>
<div id="_mcePaste">2.And then in command prompt(cmd, not vs command prompt) went to framework directory, i.e., in our case</div>
<div id="_mcePaste">C:\Windows\Microsoft.NET\Framework\v1.1.4322 and ran the command &#8220;aspnet_regiis -i&#8221; (to re-register the Framework 1.1 and reinstall ASPNET user).</div>
<div id="_mcePaste">And bingo !!! it worked without even restarting the machine/server.</div>
<div id="_mcePaste">Above solution solution also solved following problem.</div>
<div id="_mcePaste">We also faced the problem on creating new web project using asp.net 2003 on same machine, got the error:</div>
<div></div>
<div style="border:dotted gray;padding:2px;">
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div id="_mcePaste">Microsoft Development Environment</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div id="_mcePaste">The Web server reported the following error when attempting to create or open the Web project located at the following URL: &#8216;http://localhost/WebApplication1&#8242;. &#8216;HTTP/1.1 500 Server Error&#8217;.</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div id="_mcePaste">OK   Help</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
</div>
<div id="_mcePaste">
<p><em>Reference:</em></p>
</div>
<div id="_mcePaste"><a href="http://bytes.com/topic/iis/answers/645541-visual-studio-2003-http-1-1-500-internal-server-error" target="_blank"><em>http://bytes.com/topic/iis/answers/645541-visual-studio-2003-http-1-1-500-internal-server-error</em></a></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=160&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2010/06/02/asp-net-2003-error-while-trying-to-run-project-unable-to-start-debugging-on-the-web-server-server-side-error-occurred-on-sending-debug-http-request-http1-1-500-internal-server-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
		<item>
		<title>Some interesting read on Bit Twiddling: setting and resetting(clearing) bit</title>
		<link>http://indiandeve.wordpress.com/2010/05/29/some-interesting-read-on-bit-twiddling-setting-and-resettingclearing-bit/</link>
		<comments>http://indiandeve.wordpress.com/2010/05/29/some-interesting-read-on-bit-twiddling-setting-and-resettingclearing-bit/#comments</comments>
		<pubDate>Sat, 29 May 2010 18:15:43 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[tips & tricks]]></category>
		<category><![CDATA[bit manupulation]]></category>
		<category><![CDATA[set reset a bit using c]]></category>
		<category><![CDATA[setting and resetting bit]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=153</guid>
		<description><![CDATA[If above criptic notations make some sense for you and you enjoyed reading above then here is some resource for you. I was actually searching way to set or reset a bit on a number. Finally i got some solution to share:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=153&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">a | b&#8230;. a &amp; c&#8230;&#8230;.a^b&#8230;..~a*(a^b)&#8230;..</div>
<p>If above criptic notations make some sense for you and you enjoyed reading above then here is some resource for you. I was actually searching way to set or reset a bit on a number. Finally i got some solution to share:</p>
<p><strong>Setting a bit:</strong><br />
number = number | (1 &lt;&lt; n); //(it will set (n+1) th bit)</p>
<p>e.g.:<br />
num1 = 32;//100000<br />
n = 2;<br />
num2 = num1 | (1&lt;&lt;n);//num2=36 (100100)&#8230;it is setting 3rd bit</p>
<p><strong>Resetting(Clearing) a bit:</strong><br />
number = number &amp; ~(1&lt;&lt;n); //it will clear (n+1)th bit.</p>
<p>e.g.:<br />
num1 = 34; //100010<br />
n = 1;<br />
num2 = num1 &amp; ~(1&lt;&lt;n); //num2=32(100000)&#8230;it is clearing 2nd bit</p>
<p>using above we can write function to set and reset bit:</p>
<pre class="brush: cpp;">

/*set the bit at bitPos*/
int setBit(int num,int bitPos)
{
  return num | (1&lt;&lt;(bitPos-1));
}
</pre>
<p>and to clear:</p>
<pre class="brush: cpp;">
/*reset(clear) the bit at bitPos*/
int resetBit(int num, int bitPos)
{
  return num &amp; ~(1&lt;&lt;(bitPos-1));
}
</pre>
<p>Here I have found some good resource on bit twiddling:</p>
<p><a href="http://graphics.stanford.edu/~seander/bithacks.html" target="_blank">Bit Twiddling Hacks</a></p>
<p>Some thing more advance:</p>
<p><a href="http://realtimecollisiondetection.net/blog/?p=78" target="_blank">Advanced bit manipulation-fu</a></p>
<p><em>reference:</em></p>
<p><em>1. <a href="http://stackoverflow.com/questions/47981/how-do-you-set-clear-and-toggle-a-single-bit-in-c" target="_blank">Stack Overflow</a></em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=153&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2010/05/29/some-interesting-read-on-bit-twiddling-setting-and-resettingclearing-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
		<item>
		<title>introduction to interop: some good article from net</title>
		<link>http://indiandeve.wordpress.com/2010/01/20/introduction-to-interop-some-good-article-from-net/</link>
		<comments>http://indiandeve.wordpress.com/2010/01/20/introduction-to-interop-some-good-article-from-net/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 07:00:39 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[com .net]]></category>
		<category><![CDATA[interop]]></category>
		<category><![CDATA[introduction to interop]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=133</guid>
		<description><![CDATA[I was looking for some good tutorial on net for com interop, i got following nice articles:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=133&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was looking for some good tutorial on net for com interop, i got following nice articles:<br />
<a href="http://msdn.microsoft.com/en-us/library/kew41ycz%28VS.71%29.aspx">http://msdn.microsoft.com/en-us/library/kew41ycz%28VS.71%29.aspx</a></p>
<p><a href="http://radio.weblogs.com/0105852/stories/2002/11/14/introductionTonetComInterop.html">http://radio.weblogs.com/0105852/stories/2002/11/14/introductionTonetComInterop.html</a></p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc163494.aspx"></p>
<p>http://msdn.microsoft.com/en-us/magazine/cc163494.aspx</a></p>
<p><a href="http://www.15seconds.com/Issue/040721.htm">http://www.15seconds.com/Issue/040721.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=133&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2010/01/20/introduction-to-interop-some-good-article-from-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
		<item>
		<title>ExtJS Tips: How to check/unceck all the nodes of a tree(Ext.tree.TreePanel)</title>
		<link>http://indiandeve.wordpress.com/2010/01/18/extjs-tips-how-to-checkunceck-all-the-nodes-of-a-treeext-tree-treepanel/</link>
		<comments>http://indiandeve.wordpress.com/2010/01/18/extjs-tips-how-to-checkunceck-all-the-nodes-of-a-treeext-tree-treepanel/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 05:52:05 +0000</pubDate>
		<dc:creator>indiandaveloper</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[check/unceck]]></category>
		<category><![CDATA[Ext.tree.TreePanel]]></category>
		<category><![CDATA[ExtJS Tips]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=122</guid>
		<description><![CDATA[If you want to check/uncheck all the node of a tree or all the child node of a parent node then following is the way to acheive it:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=122&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post will help you to achieve following:</p>
<ol>
<li>Checking/Unchecking all the nodes of a tree.</li>
<li>Checking/Unchecking all the childnodes of a node.</li>
<li>Checking/Unchecking all the siblings of a node.(see <a href="http://indiandeve.wordpress.com/2010/01/18/extjs-tips-how-to-checkunceck-all-the-nodes-of-a-treeext-tree-treepanel/#comment-28">comments</a>..)</li>
</ol>
<p>If you want to check/uncheck all the node of a tree or all the child node of a parent node then following is the way to acheive it:</p>
<pre class="brush: jscript;">
//function to check/uncheck all the child node.
function toggleCheck(node,isCheck)
{
 if(node)
 {
 var args=[isCheck];
 node.cascade(function(){
 c=args[0];
 this.ui.toggleCheck(c);
 this.attributes.checked=c;
 },null,args);
 }
}
//this will also affect the passed parentNode(node).
</pre>
<p>Now calling this function for checking/unchecking all the node of a tree:</p>
<pre class="brush: jscript;">&lt;br /&gt;
var tree=//ext js tree.&lt;br /&gt;
toggleCheck(tree.root,true);//for checking all the nodes&lt;br /&gt;
//or&lt;br /&gt;
toggleCheck(tree.root,false);//for unchecking all the nodes&lt;br /&gt;
</pre>
<p>Now calling above function for checking/unchecking all the children of a node:</p>
<pre class="brush: jscript;">&lt;br /&gt;
var parentNode=//a node from tree.&lt;br /&gt;
toggleCheck(parentNode,true);//for checking all the child nodes&lt;br /&gt;
//or&lt;br /&gt;
toggleCheck(parentNode,false);//for unchecking all the child nodes&lt;br /&gt;
</pre>
<p>If you find any error or face any difficulty please let me know by comments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=122&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2010/01/18/extjs-tips-how-to-checkunceck-all-the-nodes-of-a-treeext-tree-treepanel/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8dae013cebc1556a7f743e360b82b82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">indiandaveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>WebDevelper tool: Browser size detection tool</title>
		<link>http://indiandeve.wordpress.com/2009/12/17/webdevelper-tool-browser-size-detection-tool/</link>
		<comments>http://indiandeve.wordpress.com/2009/12/17/webdevelper-tool-browser-size-detection-tool/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 14:15:44 +0000</pubDate>
		<dc:creator>indiandaveloper</dc:creator>
				<category><![CDATA[Web Tool]]></category>
		<category><![CDATA[Browser Size]]></category>
		<category><![CDATA[webdeveloper tool]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=115</guid>
		<description><![CDATA[This tool will give you idea about how many % of user are not able to see which part of your website.
This is develope by googler on his 20% time. If you want to see which part of page in your web site is used more/less this would do the job.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=115&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://browsersize.googlelabs.com/">Browser Size</a></p>
<p>This tool will give you idea about how many % of user are not able to see which part of your website.<br />
This is develope by googler on his 20% time. If you want to see which part of page in your web site is used more/less this would do the job.</p>
<p>Read more about this tool from its developer:<br />
<a href="http://googlecode.blogspot.com/2009/12/introducing-google-browser-size.html">http://googlecode.blogspot.com/2009/12/introducing-google-browser-size.html</a></p>
<p>Link to the tool is here: <a href="http://browsersize.googlelabs.com/">http://browsersize.googlelabs.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=115&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2009/12/17/webdevelper-tool-browser-size-detection-tool/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8dae013cebc1556a7f743e360b82b82?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">indiandaveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>ExtJS Error: invalid label error while using ScriptTagProxy for JSON data in Paging Grid Example</title>
		<link>http://indiandeve.wordpress.com/2009/12/02/extjs-error-invalid-label-error-while-using-scripttagproxy-for-json-data-in-paging-grid-example/</link>
		<comments>http://indiandeve.wordpress.com/2009/12/02/extjs-error-invalid-label-error-while-using-scripttagproxy-for-json-data-in-paging-grid-example/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 14:17:34 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[ExtJS Error]]></category>
		<category><![CDATA[invalid label]]></category>
		<category><![CDATA[Paging Grid Example error]]></category>
		<category><![CDATA[ScriptTagProxy]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=105</guid>
		<description><![CDATA[You can also read this post if you are getting above error while using ScriptTagProxy. With little bit modification i was trying to use Paging Grid Example from ExtJS. And that where i was getting following error: invalid label {"success":true,"totalCount": Actually it was not filling my grid, while examining with firebug i got above error. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=105&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#00ccff;">You can also read this post if you are getting above error while using ScriptTagProxy.</span></p>
<p>With little bit modification i was trying to use Paging Grid <a href="http://www.extjs.com/deploy/dev/examples/grid/paging.html" target="_blank">Example</a> from ExtJS. And that where i was getting following error:</p>
<pre><span style="color:#ff0000;">invalid label</span>
   <span style="color:#339966;"> {"success":true,"totalCount":</span></pre>
<p>Actually it was not filling my grid, while examining with firebug i got above error. After banging my head over internet i found the reason <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .<br />
Actually it is using ScriptTagProxy to get json data from server. I was sending pure json from server which is not the correct way. ScriptTagProxy sends a url parameter called &#8220;callback&#8221; which is function name. You need to take this param and form a parameter call. For example callback=fun1 is comming from server, then what you need to do is enclose your json with fun1(yourJSON) call.<br />
like:<br />
<strong><span style="color:#993300;"><em>fun1({&#8212;-your json&#8212;-});</em></span></strong></p>
<p>Following is an example of ASP.Net code for it:</p>
<pre class="brush: plain;">
 String json_string= //&quot;some json here&quot;;
 String callback_function_name= Request.Params.Get(&quot;callback&quot;);
 String response_string = &quot;&quot;;
 if (!String.IsNullOrEmpty(callback_function_name))
 {
 response_string = callback_function_name + &quot;(&quot; + json_string + &quot;)&quot;;
 }
 else
 {
 response_string = json_string;
 }
 Response.Write(response_string);
</pre>
<p>you can see the difference of data comming from server for Paging Grid Example. Open following two url:</p>
<pre><a title="with out callback params" href="http://extjs.com/forum/topics-browse-remote.php" target="_blank">http://extjs.com/forum/topics-browse-remote.php</a>
<a title="with callback params" href="http://www.extjs.com/forum/topics-browse-remote.php?callback=fun_1" target="_blank">http://www.extjs.com/forum/topics-browse-remote.php?callback=fun_1</a></pre>
<p>After examining the data on your browser you will see that, first url is giving pure json, while second one is giving json enclosed in fun_1() function call. ScriptTagProxy is expecting the second data not the pure json one.</p>
<p>If you have any suggestions please feel free to comment.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=105&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2009/12/02/extjs-error-invalid-label-error-while-using-scripttagproxy-for-json-data-in-paging-grid-example/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
		<item>
		<title>Sorting a number field in MySQL: Making order by work for number fields in mysql</title>
		<link>http://indiandeve.wordpress.com/2009/11/18/sorting-a-number-field-in-mysql-making-order-by-work-for-number-fields-in-mysql/</link>
		<comments>http://indiandeve.wordpress.com/2009/11/18/sorting-a-number-field-in-mysql-making-order-by-work-for-number-fields-in-mysql/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 06:06:47 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[order by doesn't work]]></category>
		<category><![CDATA[order by not working for number field]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=98</guid>
		<description><![CDATA[When using Order By field having number doesnt work some time. Actually it tries to sort the fields considering them as string, so numbers 11,2,1,111,21,3 will be sorted like:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=98&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When using Order By field having number doesnt work some time. Actually it tries to sort the fields considering them as string, so numbers 11,2,1,111,21,3 will be sorted like:<br />
1,11,111,2,21,3<br />
which is not desired, it should be:<br />
1,2,3,11,21,111</p>
<p>To order the values as they should be, simply use the SQL ABS function.</p>
<p>to get this desired result use query like:</p>
<p><span style="color:#888888;">SELECT * FROM &#8216;myTable&#8217; WHERE b=&#8217;abc&#8217; ORDER BY ABS(price) ASC</span></p>
<p>here price is number field.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=98&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2009/11/18/sorting-a-number-field-in-mysql-making-order-by-work-for-number-fields-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Interview Questions: Interview by google&#8230;Do you need job in google?</title>
		<link>http://indiandeve.wordpress.com/2009/11/17/google-interview-questions-interview-by-google-do-you-need-job-in-google/</link>
		<comments>http://indiandeve.wordpress.com/2009/11/17/google-interview-questions-interview-by-google-do-you-need-job-in-google/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 14:55:38 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[GOOG]]></category>
		<category><![CDATA[google interview questions]]></category>
		<category><![CDATA[i want a job in google ;)]]></category>
		<category><![CDATA[interview by google]]></category>
		<category><![CDATA[interview questions]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=93</guid>
		<description><![CDATA[Since lot of people do it, i also wanted to do this. No..no..no..dont misunderstand me
i am not talking about applying for a job at google, but i am going to write a post on it, i will try to add links to other pages from here, which will give an experiance about how it is to get interviewed by google ;).<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=93&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since lot of people do it, i also wanted to do this. No..no..no..dont misunderstand me<br />
i am not talking about applying for a job at google, but i am going to write a post on it, i will try to add links to other pages from here, which will give an experiance about how it is to get interviewed by google <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .<br />
If you know any other page where they have discussed about it please let me know throw comments. Also if you had any such experiance please let me know.</p>
<p><strong>So here is various links to such pages:</strong></p>
<p><span style="color:#808000;">Following link gives an idead about how to not get in google <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I think she did some mistake, yep she was nervous but quesioned asked was not so tough i guess&#8230;</span><br />
<a href="http://www.businessinsider.com/my-nightmare-interviews-with-google-2009-11" target="_blank">My Nightmare Interviews With Google </a><br />
[http://www.businessinsider.com/my-nightmare-interviews-with-google-2009-11]</p>
<p><span style="color:#993300;">This gives some typical question you would have heard about googles question:</span><br />
<a href="http://www.businessinsider.com/15-google-interview-questions-that-will-make-you-feel-stupid-2009-11">15 Google Interview Questions That Will Make You Feel Stupid (GOOG)</a>[http://www.businessinsider.com/15-google-interview-questions-that-will-make-you-feel-stupid-2009-11]</p>
<p><span style="color:#808000;">Here is the real and good list of googles interview quesion:</span><br />
<a href="http://blog.seattleinterviewcoach.com/2009/02/140-google-interview-questions.html">140 Google Interview Questions</a>[http://blog.seattleinterviewcoach.com/2009/02/140-google-interview-questions.html]</p>
<p><span style="color:#993300;">Here is set of another 15 questions, with answers <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span><br />
<a href="http://gizmodo.com/5405852/answers-to-15-more-google-interview-questions-that-will-make-you-feel-stupid">Answers to 15 More Google Interview Questions That Will Make You Feel Stupid</a>[http://gizmodo.com/5405852/answers-to-15-more-google-interview-questions-that-will-make-you-feel-stupid]</p>
<p><span style="color:#808000;">One more sad sotry <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </span><br />
<a href="http://ifdefined.com/blog/post/Google-interview.aspx">Google Interview</a><br />
[http://ifdefined.com/blog/post/Google-interview.aspx]</p>
<p>&nbsp;</p>
<p><span style="color:#993300;">A though with lot of comments..</span></p>
<p><a href="http://weblogs.asp.net/jasonsalas/archive/2005/09/04/424378.aspx">Just a thought !!!</a>[http://weblogs.asp.net/jasonsalas/archive/2005/09/04/424378.aspx]</p>
<p><span style="color:#808000;">A full story with lot of nice pics.</span><br />
<a href="http://www.nomachetejuggling.com/2006/12/30/my-interview-with-google/">My Interview With Google</a><br />
[http://www.nomachetejuggling.com/2006/12/30/my-interview-with-google/]</p>
<p><span style="color:#993300;">Another failure story but worth reading&#8230;</span><br />
<a href="http://www.philosophicalgeek.com/2007/08/12/my-interview-experience-with-google/">My interview experience with Google</a><br />
[http://www.philosophicalgeek.com/2007/08/12/my-interview-experience-with-google/]</p>
<p><span style="color:#808000;">Some thing from The Register</span><br />
<a href="http://www.theregister.co.uk/2007/01/05/google_interview_tales/">Tales from the Google interview room</a><br />
[http://www.theregister.co.uk/2007/01/05/google_interview_tales/]</p>
<p><span style="color:#993300;">Here is expriance of Peteris Krumins’ from his blog. Its really good. If you want to go for software engineer position it may help you.</span><br />
<a href="http://www.catonmat.net/blog/my-job-interview-at-google/">Peteris Krumins’ Interview at Google</a><br />
[http://www.catonmat.net/blog/my-job-interview-at-google/]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=93&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2009/11/17/google-interview-questions-interview-by-google-do-you-need-job-in-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
		<item>
		<title>How To display table in GridView: Dynamically filling data in GridView from DataTable in ASP .Net</title>
		<link>http://indiandeve.wordpress.com/2009/11/17/how-to-display-table-in-gridview-dynamically-filling-data-in-gridview-from-datatable-in-asp-net/</link>
		<comments>http://indiandeve.wordpress.com/2009/11/17/how-to-display-table-in-gridview-dynamically-filling-data-in-gridview-from-datatable-in-asp-net/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 04:57:02 +0000</pubDate>
		<dc:creator>falaque</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[tips & tricks]]></category>
		<category><![CDATA[fill data to gridview]]></category>
		<category><![CDATA[GridView]]></category>

		<guid isPermaLink="false">http://indiandeve.wordpress.com/?p=89</guid>
		<description><![CDATA[I had a datatable and i needed to show in a GridView in my ASP .Net page. Following is the code which help me to do so. Here GetRequiredTable() is a user(example) function which return a table to display in to gridview. You can also use DataSet in place of DataTable.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=89&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a datatable and i needed to show in a GridView in my ASP .Net page. Following is the code which help me to do so.</p>
<pre class="brush: plain;">
//get table to be shown in grid view;
DataTable dataTable = GetRequiredTable();
//assing table to the DataSource property of GridView
myGridView.DataSource=dataTable;
//bind data from a data source to the GridView control
myGridView.DataBind();
</pre>
<p>Here GetRequiredTable() is a user(example) function which return a table to display in to gridview.<br />
You can also use DataSet in place of DataTable.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/indiandeve.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/indiandeve.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/indiandeve.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/indiandeve.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/indiandeve.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/indiandeve.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/indiandeve.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/indiandeve.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/indiandeve.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/indiandeve.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/indiandeve.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/indiandeve.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/indiandeve.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/indiandeve.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=indiandeve.wordpress.com&amp;blog=8734755&amp;post=89&amp;subd=indiandeve&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://indiandeve.wordpress.com/2009/11/17/how-to-display-table-in-gridview-dynamically-filling-data-in-gridview-from-datatable-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddb9cb95f0a5b4bb9363c6f4592cf96a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">falaque</media:title>
		</media:content>
	</item>
	</channel>
</rss>
