<?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/"
	>

<channel>
	<title>Tips n Tracks &#187; Anil kumar Pandey</title>
	<atom:link href="http://www.tipsntracks.com/author/anilk/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tipsntracks.com</link>
	<description>knowledge Is Power</description>
	<lastBuildDate>Tue, 17 Jan 2012 07:58:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>JavaScript Validation for Check box list</title>
		<link>http://www.tipsntracks.com/201/javascript-validation-for-check-box-list.html</link>
		<comments>http://www.tipsntracks.com/201/javascript-validation-for-check-box-list.html#comments</comments>
		<pubDate>Thu, 13 Aug 2009 09:38:07 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=201</guid>
		<description><![CDATA[Here is the sample JavaScript code to demonstrate that how can we validate a checkbox list inside the aspx page. Just call function vldChkBoxlist&#40;&#41; and it will validate your checkbox list. function vldChkBoxlist&#40;&#41; &#123; var tableBody = document.getElementById&#40;&#8216;CheckBoxList1&#8217;&#41;.childNodes&#91;0&#93;; for &#40;var i=0;i&#60;tableBody.childNodes.length; i++&#41; &#123; var currentTd = tableBody.childNodes&#91;i&#93;.childNodes&#91;0&#93;; var listControl = currentTd.childNodes&#91;0&#93;; if &#40;listControl.checked =true&#41; &#123; [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/201/javascript-validation-for-check-box-list.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Images in .Net with Bitmap and Graphics objects</title>
		<link>http://www.tipsntracks.com/199/creating-images-in-net-with-bitmap-and-graphics-objects.html</link>
		<comments>http://www.tipsntracks.com/199/creating-images-in-net-with-bitmap-and-graphics-objects.html#comments</comments>
		<pubDate>Thu, 13 Aug 2009 09:27:10 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=199</guid>
		<description><![CDATA[Creating images in .Net is not a big task.This can be done using a bitmap object &#38; graphics object. Using thease objcts we can create our own images or any graphicle objects. Public Void CreateImage&#40;&#41; &#123; System.Drawing.Bitmap objBMP = new System.Drawing.Bitmap&#40;1500, 600&#41;; &#160; System.Drawing.Graphics objGraph = System.Drawing.Graphics.FromImage&#40;objBMP&#41;; objGraph.Clear&#40;System.Drawing.Color.Gray&#41;; objGraph.DrawString&#40;&#34;Hello Anil.&#34;, new System.Drawing.Font&#40;&#34;Courier&#34;, 10&#41;, Brushes.Green, 70, [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/199/creating-images-in-net-with-bitmap-and-graphics-objects.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Coding Standards and Guidelines</title>
		<link>http://www.tipsntracks.com/37/asp-dot-net-coding-standards-and-guidelines.html</link>
		<comments>http://www.tipsntracks.com/37/asp-dot-net-coding-standards-and-guidelines.html#comments</comments>
		<pubDate>Sun, 10 Aug 2008 11:35:21 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Coding Standard]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=37</guid>
		<description><![CDATA[ASP.NET Coding Standards and Guidelines 1. Prefix user control names with “uc” 2. The rest of the user control name should be in Pascal Casing (Ex. ucMyUserControl) 3. Do not use session variables throughout the code. Use session variables only within the classes and expose methods to access the value stored in the session variables. [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/37/asp-dot-net-coding-standards-and-guidelines.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Database Coding Standards and Guidelines</title>
		<link>http://www.tipsntracks.com/35/database-coding-standards-and-guidelines.html</link>
		<comments>http://www.tipsntracks.com/35/database-coding-standards-and-guidelines.html#comments</comments>
		<pubDate>Sun, 10 Aug 2008 11:17:10 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[Coding Standard]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=35</guid>
		<description><![CDATA[Database Coding Standards and Guidelines 1. ANSI SQL 92 standards have to be followed for writing queries. 2. Do not put order by clause in the query unless required. 3. Do not encapsulate readonly database operations in transactions. 4. Use a stored procedure with output parameters instead of single record SELECT statements when retrieving one [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/35/database-coding-standards-and-guidelines.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# Coding Standards and Guidelines: Error Handling</title>
		<link>http://www.tipsntracks.com/33/csharp-coding-standards-error-handling.html</link>
		<comments>http://www.tipsntracks.com/33/csharp-coding-standards-error-handling.html#comments</comments>
		<pubDate>Sun, 10 Aug 2008 10:55:59 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Coding Standard]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=33</guid>
		<description><![CDATA[C# Coding Standards and Guidelines: Error Handling 1. Error handler should be present whenever you anticipate possibility of error. 2. Do not use Try-catch for flow- control. 3. Never declare an empty catch block. 4. Error Message should be user friendly, simple and understandable. 5. Errors should be raised in the routines present in the [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/33/csharp-coding-standards-error-handling.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# Coding Standards and Guidelines: Comments</title>
		<link>http://www.tipsntracks.com/25/csharp-coding-standards-and-guidelines-for-comments.html</link>
		<comments>http://www.tipsntracks.com/25/csharp-coding-standards-and-guidelines-for-comments.html#comments</comments>
		<pubDate>Sun, 10 Aug 2008 09:35:09 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Coding Standard]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=25</guid>
		<description><![CDATA[C# Coding Standards and Guidelines: Comments 1. All source code must include the following comments at the very top: /******************************************************** *Author: *Date: *Description: *Revision: ********************************************************/ 2. All comments should be written in English(like in U.S. English). 3. Comments lines should begin with // indented at the same level as the code they are documenting. 4. [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/25/csharp-coding-standards-and-guidelines-for-comments.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C# Coding Standards and Guidelines: Coding Practices</title>
		<link>http://www.tipsntracks.com/24/csharp-coding-practices.html</link>
		<comments>http://www.tipsntracks.com/24/csharp-coding-practices.html#comments</comments>
		<pubDate>Sat, 09 Aug 2008 18:04:52 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Coding Standard]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=24</guid>
		<description><![CDATA[C# Coding Standards and Guidelines: Coding Practices 1. Use meaningful namespace such as the product name or the company name. 2. Avoid fully qualified type names. Use the using statement instead. 3. Avoid putting a using statement inside a namespace. 4. Group all framework namespaces together and put custom or third-party namespaces underneath. using System; [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/24/csharp-coding-practices.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# Coding Standards and Guidelines: Naming Conversions and Style</title>
		<link>http://www.tipsntracks.com/21/csharp-naming-conversions-and-style.html</link>
		<comments>http://www.tipsntracks.com/21/csharp-naming-conversions-and-style.html#comments</comments>
		<pubDate>Sat, 09 Aug 2008 11:13:03 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Coding Standard]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=21</guid>
		<description><![CDATA[C# Coding Standards and Guidelines: Naming Conversions and Style 1) Use Pascal casing for type and method and constants. public class SomeClass { const int DefaultSize= 100; public SomeMethod () {} } 2) Use camel casing for local variable names and method arguments. public class SomeClass { int number; void MyMethod (int someNumber) {} } [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/21/csharp-naming-conversions-and-style.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Types of Smart Clients Applications</title>
		<link>http://www.tipsntracks.com/14/types-of-smart-clients-applications.html</link>
		<comments>http://www.tipsntracks.com/14/types-of-smart-clients-applications.html#comments</comments>
		<pubDate>Sun, 03 Aug 2008 03:10:45 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[Smart Client]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=14</guid>
		<description><![CDATA[Types of Smart Clients Applications Smart clients vary greatly in design and implementation, both in application requirements and in the number of scenarios and environments in which they can be used. Smart clients therefore can take many different forms and styles. These forms can be divided into three broad categories according to the platform that [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/14/types-of-smart-clients-applications.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smart Client &#8211; figure out the design challenges and the solutions.</title>
		<link>http://www.tipsntracks.com/12/smart-client-design-challenges-and-solutions.html</link>
		<comments>http://www.tipsntracks.com/12/smart-client-design-challenges-and-solutions.html#comments</comments>
		<pubDate>Sun, 03 Aug 2008 03:08:08 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[Smart Client]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=12</guid>
		<description><![CDATA[Smart Client &#8211; figure out the design challenges and the solutions. Smart clients are easily deployed and managed client applications that provide an adaptive, responsive and rich interactive experience by leveraging local resources and intelligently connecting to distributed data sources To fully understand how smart clients combine the benefits of rich clients and thin clients, [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/12/smart-client-design-challenges-and-solutions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

