<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:series="http://unfoldingneurons.com/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>w3mentor</title>
	
	<link>http://w3mentor.com</link>
	<description>Learning web technologies simplified!</description>
	<lastBuildDate>Sat, 28 Jan 2012 20:16:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/w3mentor" /><feedburner:info uri="w3mentor" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>w3mentor</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Exception class hierarchy in Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/DlLdkC1L6Tk/</link>
		<comments>http://w3mentor.com/learn/java/java-language-basics/exception-class-hierarchy-in-java/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 20:15:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Language basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11912</guid>
		<description>Exception AclNotFoundException ActivationException UnknownGroupException UnknownObjectException AlreadyBoundException ApplicationException AWTException BadLocationException ClassNotFoundException CloneNotSupportedException ServerCloneException DataFormatException ExpandVetoException GeneralSecurityException CertificateException CertificateEncodingException CertificateExpiredException CertificateNotYetValidException CertificateParsingException CRLException DigestException InvalidAlgorithmParameterException InvalidKeySpecException InvalidParameterSpecException KeyException InvalidKeyException KeyManagementException KeyStoreException NoSuchAlgorithmException NoSuchProviderException SignatureException UnrecoverableKeyException IllegalAccessException InstantiationException InterruptedException IntrospectionException InvocationTargetException IOException ChangedCharSetException &amp;#8230; &lt;a href="http://w3mentor.com/learn/java/java-language-basics/exception-class-hierarchy-in-java/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/DlLdkC1L6Tk" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/java-language-basics/exception-class-hierarchy-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/java-language-basics/exception-class-hierarchy-in-java/</feedburner:origLink></item>
		<item>
		<title>Example of echo server in Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Wv-JPc1oo98/</link>
		<comments>http://w3mentor.com/learn/java/network-programming/example-of-echo-server-in-java/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 20:13:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network Programming]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11910</guid>
		<description>try &amp;#123; ServerSocket s = new ServerSocket&amp;#40;1234&amp;#41;; // Create server while &amp;#40;true&amp;#41; &amp;#123; Socket c = s.accept&amp;#40;&amp;#41;; // Await connection InputStream i = c.getInputStream&amp;#40;&amp;#41;; // Get input stream OutputStream o = c.getOutputStream&amp;#40;&amp;#41;;//Get output stream do &amp;#123; byte&amp;#91;&amp;#93; line = new &amp;#8230; &lt;a href="http://w3mentor.com/learn/java/network-programming/example-of-echo-server-in-java/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Wv-JPc1oo98" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/network-programming/example-of-echo-server-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/network-programming/example-of-echo-server-in-java/</feedburner:origLink></item>
		<item>
		<title>Example of Echo Client in Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/BDhVgcFHas4/</link>
		<comments>http://w3mentor.com/learn/java/network-programming/example-of-echo-client-in-java/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 20:11:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Network Programming]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11908</guid>
		<description>Socket s = new Socket&amp;#40;&amp;#34;192.168.1.1&amp;#34;, 123&amp;#41;; // Create socket InputStream i = s.getInputStream&amp;#40;&amp;#41;; // Get input stream OutputStream o = s.getOutputStream&amp;#40;&amp;#41;; // Get output stream String str; do &amp;#123; byte&amp;#91;&amp;#93; line = new byte&amp;#91;100&amp;#93;; System.in.read&amp;#40;line&amp;#41;; // Read from console o.write&amp;#40;line&amp;#41;; &amp;#8230; &lt;a href="http://w3mentor.com/learn/java/network-programming/example-of-echo-client-in-java/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/BDhVgcFHas4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/network-programming/example-of-echo-client-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/network-programming/example-of-echo-client-in-java/</feedburner:origLink></item>
		<item>
		<title>Recursively calculaate Fibonacci Sequence in Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/_jv_cz3lb_0/</link>
		<comments>http://w3mentor.com/learn/java/java-language-basics/recursively-calculaate-fibonacci-sequence-in-java/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 14:01:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Language basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11905</guid>
		<description>public class Fibonacci &amp;#123; &amp;#160; private int calculate&amp;#40;int length&amp;#41; &amp;#123; if &amp;#40;length &amp;#60; 0&amp;#41; &amp;#123; throw new IllegalArgumentException&amp;#40;&amp;#34;Input must be greater than zero&amp;#34;&amp;#41;; &amp;#125; if &amp;#40;length &amp;#60;= 1&amp;#41; &amp;#123; return length; &amp;#125; else &amp;#123; return calculate&amp;#40;length - 1&amp;#41; + calculate&amp;#40;length &amp;#8230; &lt;a href="http://w3mentor.com/learn/java/java-language-basics/recursively-calculaate-fibonacci-sequence-in-java/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/_jv_cz3lb_0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/java-language-basics/recursively-calculaate-fibonacci-sequence-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/java-language-basics/recursively-calculaate-fibonacci-sequence-in-java/</feedburner:origLink></item>
		<item>
		<title>Compute factorial using for loop in Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/jFJ0FZ6jncg/</link>
		<comments>http://w3mentor.com/learn/java/java-language-basics/compute-factorial-using-for-loop-in-java/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 14:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Language basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11903</guid>
		<description>public class Factorial &amp;#123; &amp;#160; int calculate&amp;#40;int number&amp;#41; &amp;#123; if &amp;#40;number &amp;#60; 0&amp;#41; &amp;#123; throw new IllegalArgumentException&amp;#40;&amp;#34;integer must be greater than zero&amp;#34;&amp;#41;; &amp;#125; if&amp;#40; number == 0 &amp;#124;&amp;#124; number == 1&amp;#41; return 1; else &amp;#123; int total = 1; for &amp;#8230; &lt;a href="http://w3mentor.com/learn/java/java-language-basics/compute-factorial-using-for-loop-in-java/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/jFJ0FZ6jncg" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/java-language-basics/compute-factorial-using-for-loop-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/java-language-basics/compute-factorial-using-for-loop-in-java/</feedburner:origLink></item>
		<item>
		<title>Calculate factorial using recursion in Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/GEN7eZhjVRs/</link>
		<comments>http://w3mentor.com/learn/java/java-language-basics/calculate-factorial-using-recursion-in-java/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 13:58:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Language basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11901</guid>
		<description>package com.w3mentor.examples.factorial; &amp;#160; public class Factorial &amp;#123; &amp;#160; int calculate&amp;#40;int number&amp;#41; &amp;#123; if &amp;#40;number &amp;#60; 0&amp;#41; &amp;#123; throw new IllegalArgumentException&amp;#40;&amp;#34;integer must be greater than zero&amp;#34;&amp;#41;; &amp;#125; if&amp;#40; number == 0&amp;#41; &amp;#123; return 1; &amp;#125; else &amp;#123; return number * calculate &amp;#8230; &lt;a href="http://w3mentor.com/learn/java/java-language-basics/calculate-factorial-using-recursion-in-java/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/GEN7eZhjVRs" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/java-language-basics/calculate-factorial-using-recursion-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/java-language-basics/calculate-factorial-using-recursion-in-java/</feedburner:origLink></item>
		<item>
		<title>Query processes using LINQ to find windows services</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/VKlefZSSHy0/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-processes-using-linq-to-find-windows-services/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 17:34:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Select]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11897</guid>
		<description>IEnumerable&amp;#60;Process&amp;#62; pList = from proc in Process.GetProcesses&amp;#40;&amp;#41; where String.Equals&amp;#40;proc.ProcessName, &amp;#34;svchost&amp;#34;&amp;#41; select proc;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/VKlefZSSHy0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-processes-using-linq-to-find-windows-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-processes-using-linq-to-find-windows-services/</feedburner:origLink></item>
		<item>
		<title>Simple LINQ to Objects example</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/r5Q7BZcQLIw/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 17:30:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Select]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11893</guid>
		<description>List&amp;#60;Employee&amp;#62; employees = new List&amp;#60;Employee&amp;#62;&amp;#40;&amp;#41; &amp;#123; new Employee &amp;#123; ID=1, Name=&amp;#34;Ravi&amp;#34;, JoinDate=new DateTime&amp;#40;2002, 1, 15&amp;#41; &amp;#125;, new Employee &amp;#123; ID=2, Name=&amp;#34;Raja&amp;#34;, JoinDate=new DateTime&amp;#40;2002, 3, 17 &amp;#125;, new Employee &amp;#123; ID=3, Name=&amp;#34;Mani&amp;#34;, JoinDate=new DateTime&amp;#40;2007, 2, 11&amp;#41; &amp;#125; &amp;#125;; &amp;#160; IEnumerable&amp;#60;Employee&amp;#62; query &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/r5Q7BZcQLIw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/simple-linq-to-objects-example/</feedburner:origLink></item>
		<item>
		<title>Query public types in an assembly using LINQ</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/bELvk8Puj5Q/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-public-types-in-an-assembly-using-linq/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 17:28:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Select]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11891</guid>
		<description>IEnumerable&amp;#60;string&amp;#62; publicTypes = from t in Assembly.GetExecutingAssembly&amp;#40;&amp;#41;.GetTypes&amp;#40;&amp;#41; where t.IsPublic select t.FullName; &amp;#160; foreach &amp;#40;string name in publicTypes&amp;#41; &amp;#123; Console.WriteLine&amp;#40;name&amp;#41;; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/bELvk8Puj5Q" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-public-types-in-an-assembly-using-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-asp-net-linq/select-c-asp-net-linq-asp-dot-net-c-sharp/query-public-types-in-an-assembly-using-linq/</feedburner:origLink></item>
		<item>
		<title>Type Validation Functions in PHP</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/wUEgDmYKNL4/</link>
		<comments>http://w3mentor.com/learn/php-mysql-tutorials/php-language-basics/type-validation-functions-in-php/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 15:45:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11814</guid>
		<description>is_array() &amp;#8211; Test for Arrays is_bool() &amp;#8211; Test for Booleans (TRUE, FALSE) is_float() &amp;#8211; Test for Floating-point numbers is_int() &amp;#8211; Test for Integers is_null() &amp;#8211; Test for NULLs is_numeric() &amp;#8211; Test forNumeric values, even as a string (e.g., &amp;#8216; 20&amp;#8242; &amp;#8230; &lt;a href="http://w3mentor.com/learn/php-mysql-tutorials/php-language-basics/type-validation-functions-in-php/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/wUEgDmYKNL4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/php-mysql-tutorials/php-language-basics/type-validation-functions-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/php-mysql-tutorials/php-language-basics/type-validation-functions-in-php/</feedburner:origLink></item>
		<item>
		<title>Get phone number in android using Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/zd72GCyoeZA/</link>
		<comments>http://w3mentor.com/learn/java/android-development/get-phone-number-in-android-using-java/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 15:31:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android Development]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11812</guid>
		<description>private String getMyPhoneNumber&amp;#40;&amp;#41;&amp;#123; TelephonyManager mTelephonyMgr; mTelephonyMgr = &amp;#40;TelephonyManager&amp;#41; getSystemService&amp;#40;Context.TELEPHONY_SERVICE&amp;#41;; return mTelephonyMgr.getLine1Number&amp;#40;&amp;#41;; &amp;#125; &amp;#160; private String getMy10DigitPhoneNumber&amp;#40;&amp;#41;&amp;#123; String s = getMyPhoneNumber&amp;#40;&amp;#41;; return s.substring&amp;#40;2&amp;#41;; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/zd72GCyoeZA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/android-development/get-phone-number-in-android-using-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/android-development/get-phone-number-in-android-using-java/</feedburner:origLink></item>
		<item>
		<title>Check network connection availability on android using Java</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/YKTF1RpIbiY/</link>
		<comments>http://w3mentor.com/learn/java/android-development/check-network-connection-availability-on-android-using-java/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 15:16:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android Development]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11810</guid>
		<description>public boolean checkTheNetworkAvailability&amp;#40;&amp;#41; &amp;#123; Context mycontext = getApplicationContext&amp;#40;&amp;#41;; ConnectivityManager myconnectivity = &amp;#40;ConnectivityManager&amp;#41; mycontext.getSystemService&amp;#40;Context.CONNECTIVITY_SERVICE&amp;#41;; if &amp;#40;myconnectivity == null&amp;#41; &amp;#123; return false; // failed null!.. &amp;#125; else &amp;#123; NetworkInfo&amp;#91;&amp;#93; myinfo = myconnectivity.getAllNetworkInfo&amp;#40;&amp;#41;; if &amp;#40;myinfo != null&amp;#41; &amp;#123; for &amp;#40;int i = 0; &amp;#8230; &lt;a href="http://w3mentor.com/learn/java/android-development/check-network-connection-availability-on-android-using-java/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/YKTF1RpIbiY" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/android-development/check-network-connection-availability-on-android-using-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/android-development/check-network-connection-availability-on-android-using-java/</feedburner:origLink></item>
		<item>
		<title>Hide the status bar on android</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/YQCQOKJ6VQ0/</link>
		<comments>http://w3mentor.com/learn/java/android-development/hide-the-status-bar-on-android/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 15:14:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android Development]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11808</guid>
		<description>getWindow&amp;#40;&amp;#41;.setFlags&amp;#40;WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/YQCQOKJ6VQ0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/android-development/hide-the-status-bar-on-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/android-development/hide-the-status-bar-on-android/</feedburner:origLink></item>
		<item>
		<title>Hide title bar on android</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/S1xw1k_Iv7c/</link>
		<comments>http://w3mentor.com/learn/java/android-development/hide-title-bar-on-android/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 15:13:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android Development]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11806</guid>
		<description>requestWindowFeature&amp;#40;Window.FEATURE_NO_TITLE&amp;#41;; requestWindowFeature&amp;#40;Window.FEATURE_PROGRESS&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/S1xw1k_Iv7c" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/android-development/hide-title-bar-on-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/android-development/hide-title-bar-on-android/</feedburner:origLink></item>
		<item>
		<title>Android enable disable wifi on phone</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/9uVQTJScXnY/</link>
		<comments>http://w3mentor.com/learn/java/android-development/android-enable-disable-wifi-on-phone/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 15:12:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android Development]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11804</guid>
		<description>WifiManager mywifi = &amp;#40;WifiManager&amp;#41; getSystemService&amp;#40;Context.WIFI_SERVICE&amp;#41;; mywifi.setWifiEnabled&amp;#40;enabled&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/9uVQTJScXnY" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/java/android-development/android-enable-disable-wifi-on-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/java/android-development/android-enable-disable-wifi-on-phone/</feedburner:origLink></item>
		<item>
		<title>Hide a file in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/EbA97lXusF4/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/hide-a-file-in-c/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 16:42:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# File Handling]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11801</guid>
		<description>File.SetAttributes&amp;#40;filePath, File.GetAttributes&amp;#40;filePath&amp;#41; &amp;#124; FileAttributes.Hidden&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/EbA97lXusF4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/hide-a-file-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/hide-a-file-in-c/</feedburner:origLink></item>
		<item>
		<title>Check if a file is system file in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/kh0vjfWuq1k/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-is-system-file-in-c/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 16:41:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# File Handling]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11799</guid>
		<description>bool isSystem = &amp;#40;&amp;#40;File.GetAttributes&amp;#40;filePath&amp;#41; &amp;#38; FileAttributes.System&amp;#41; == FileAttributes.System&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/kh0vjfWuq1k" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-is-system-file-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-is-system-file-in-c/</feedburner:origLink></item>
		<item>
		<title>Check if a file has archive attribute in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Z6myekrSNCQ/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-has-archive-attribute-in-c/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 16:41:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# File Handling]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11797</guid>
		<description>bool isArchive = &amp;#40;&amp;#40;File.GetAttributes&amp;#40;filePath&amp;#41; &amp;#38; FileAttributes.Archive&amp;#41; == FileAttributes.Archive&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Z6myekrSNCQ" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-has-archive-attribute-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-has-archive-attribute-in-c/</feedburner:origLink></item>
		<item>
		<title>Check whether a file is hidden in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/DZS6IoAdbjA/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-whether-a-file-is-hidden-in-c/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 16:40:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# File Handling]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11795</guid>
		<description>bool isHidden = &amp;#40;&amp;#40;File.GetAttributes&amp;#40;filePath&amp;#41; &amp;#38; FileAttributes.Hidden&amp;#41; == FileAttributes.Hidden&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/DZS6IoAdbjA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-whether-a-file-is-hidden-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-whether-a-file-is-hidden-in-c/</feedburner:origLink></item>
		<item>
		<title>Check if a file is read only in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/zsD_t9Jwrno/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-is-read-only-in-c/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 16:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# File Handling]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11793</guid>
		<description>bool isReadOnly = &amp;#40;&amp;#40;File.GetAttributes&amp;#40;filePath&amp;#41; &amp;#38; FileAttributes.ReadOnly&amp;#41; == FileAttributes.ReadOnly&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/zsD_t9Jwrno" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-is-read-only-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/check-if-a-file-is-read-only-in-c/</feedburner:origLink></item>
		<item>
		<title>Display the call stack method names in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/k8XTNvAuGE8/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/display-the-call-stack-method-names-in-c/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 16:38:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11791</guid>
		<description>using System.Diagnostics; &amp;#160; &amp;#91;STAThread&amp;#93; public static void Main&amp;#40;&amp;#41; &amp;#123; //obtain call stack StackTrace stackTrace = new StackTrace&amp;#40;&amp;#41;; // obtain method calls (frames) StackFrame&amp;#91;&amp;#93; stackFrames = stackTrace.GetFrames&amp;#40;&amp;#41;; &amp;#160; // display method names foreach &amp;#40;StackFrame stackFrame in stackFrames&amp;#41; &amp;#123; Console.WriteLine&amp;#40;stackFrame.GetMethod&amp;#40;&amp;#41;.Name&amp;#41;; // output &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/display-the-call-stack-method-names-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/k8XTNvAuGE8" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/display-the-call-stack-method-names-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/display-the-call-stack-method-names-in-c/</feedburner:origLink></item>
		<item>
		<title>Get Name of the  calling method using Reflection in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/PVp51ehSiFE/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/get-name-of-the-calling-method-using-reflection-in-c/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 16:37:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11789</guid>
		<description>using System.Diagnostics; &amp;#160; // get call stack StackTrace stackTrace = new StackTrace&amp;#40;&amp;#41;; &amp;#160; // get calling method name Console.WriteLine&amp;#40;stackTrace.GetFrame&amp;#40;1&amp;#41;.GetMethod&amp;#40;&amp;#41;.Name&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/PVp51ehSiFE" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/get-name-of-the-calling-method-using-reflection-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/get-name-of-the-calling-method-using-reflection-in-c/</feedburner:origLink></item>
		<item>
		<title>C# Enqueue and Dequeue queue operations</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/n6wjufPiINU/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/c-enqueue-and-dequeue-queue-operations/#comments</comments>
		<pubDate>Tue, 24 May 2011 20:50:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11786</guid>
		<description>Queue&amp;#60;string&amp;#62; myQueue = new Queue&amp;#60;string&amp;#62;&amp;#40;&amp;#41;; void AddQueueItem&amp;#40;string request&amp;#41; &amp;#123; myQueue.Enqueue&amp;#40;request&amp;#41; ; &amp;#125; string GetNextQueueItem&amp;#40;&amp;#41; &amp;#123; return myQueue.Dequeue&amp;#40;&amp;#41; ; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/n6wjufPiINU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/c-enqueue-and-dequeue-queue-operations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/c-enqueue-and-dequeue-queue-operations/</feedburner:origLink></item>
		<item>
		<title>Stack push and pop in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/q-3ipgaMnPU/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/stack-push-and-pop-in-c/#comments</comments>
		<pubDate>Tue, 24 May 2011 20:48:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11784</guid>
		<description>Stack&amp;#60;string&amp;#62; myStack = new Stack&amp;#60;string&amp;#62;&amp;#40;&amp;#41; ; void addRecord&amp;#40;string move&amp;#41; &amp;#123; myStack.Push&amp;#40;move&amp;#41;; &amp;#125; string GetLastRecord&amp;#40;&amp;#41; &amp;#123; return myStack.Pop&amp;#40;&amp;#41;; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/q-3ipgaMnPU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/stack-push-and-pop-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/stack-push-and-pop-in-c/</feedburner:origLink></item>
		<item>
		<title>Arraylist properties and methods in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/fne5-_AVt2o/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/arraylist-properties-and-methods-in-c/#comments</comments>
		<pubDate>Tue, 24 May 2011 20:16:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11782</guid>
		<description>ArrayList alphaList = new ArrayList&amp;#40;&amp;#41;; alphaList.Add&amp;#40;&amp;#34;A&amp;#34;&amp;#41;; alphaList.Add&amp;#40;&amp;#34;D&amp;#34;&amp;#41;; alphaList.Add&amp;#40;&amp;#34;W&amp;#34;&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;Original Capacity&amp;#34;&amp;#41;; Console.WriteLine&amp;#40;alphaList.Capacity&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;Original Values&amp;#34;&amp;#41;; foreach &amp;#40;object alpha in alphaList&amp;#41; &amp;#123; Console.WriteLine&amp;#40;alpha&amp;#41;; &amp;#125; &amp;#160; alphaList.Insert&amp;#40;alphaList.IndexOf&amp;#40;&amp;#34;D&amp;#34;&amp;#41; , &amp;#34;C&amp;#34;&amp;#41;; alphaList.Insert&amp;#40;alphaList.IndexOf&amp;#40;&amp;#34;W&amp;#34;&amp;#41; , &amp;#34;J&amp;#34;&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;New Capacity&amp;#34;&amp;#41;; Console.WriteLine&amp;#40;alphaList. Capacity&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;New Values&amp;#34;&amp;#41;; foreach &amp;#40;object alpha in alphaList&amp;#41; &amp;#123; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/arraylist-properties-and-methods-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/fne5-_AVt2o" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/arraylist-properties-and-methods-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/arraylist-properties-and-methods-in-c/</feedburner:origLink></item>
		<item>
		<title>Declare and fill a two-dimensional array in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/gdxKNW62Oo4/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/declare-and-fills-a-two-dimensional-array-in-c/#comments</comments>
		<pubDate>Tue, 24 May 2011 20:13:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11779</guid>
		<description>int&amp;#91;, &amp;#93; my2DArray = &amp;#123; &amp;#123; 1, 1 &amp;#125;, &amp;#123; 3, 5 &amp;#125;, &amp;#123; 5, 7 &amp;#125; &amp;#125;; for &amp;#40;int i = 0; i &amp;#60;= my2DArray. GetUpperBound&amp;#40;0&amp;#41; ; i++&amp;#41; &amp;#123; for &amp;#40;int x = 0; x &amp;#60;= my2DArray.GetUpperBound&amp;#40;1&amp;#41;; x++&amp;#41; &amp;#123; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/declare-and-fills-a-two-dimensional-array-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/gdxKNW62Oo4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/declare-and-fills-a-two-dimensional-array-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/declare-and-fills-a-two-dimensional-array-in-c/</feedburner:origLink></item>
		<item>
		<title>Foreach loop to iterate through the elements of the array in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/jpXk3KMInag/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/foreach-loop-to-iterate-through-the-elements-of-the-array-in-c/#comments</comments>
		<pubDate>Tue, 24 May 2011 20:10:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11777</guid>
		<description>int&amp;#91;&amp;#93; intArray = &amp;#123; 1, 2, 3, 4, 5 &amp;#125;; Console.WriteLine&amp;#40;&amp;#34;Upper Bound&amp;#34;&amp;#41;; Console.WriteLine&amp;#40;intArray. GetUpperBound&amp;#40;0&amp;#41; &amp;#41;; Console.WriteLine&amp;#40;&amp;#34;Array elements&amp;#34;&amp;#41; ; foreach &amp;#40;int item in intArray&amp;#41; &amp;#123; Console.WriteLine&amp;#40;item&amp;#41; ; &amp;#125; Array.Reverse&amp;#40;intArray&amp;#41; ; Console.WriteLine&amp;#40;&amp;#34;Array reversed&amp;#34;&amp;#41; ; foreach &amp;#40;int item in intArray&amp;#41; &amp;#123; Console.WriteLine&amp;#40;item&amp;#41; ; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/foreach-loop-to-iterate-through-the-elements-of-the-array-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/jpXk3KMInag" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/foreach-loop-to-iterate-through-the-elements-of-the-array-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/foreach-loop-to-iterate-through-the-elements-of-the-array-in-c/</feedburner:origLink></item>
		<item>
		<title>Test if number is even or odd in C</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/2PEameFtl7A/</link>
		<comments>http://w3mentor.com/learn/cc/functions-recursion/test-if-number-is-even-or-odd-in-c/#comments</comments>
		<pubDate>Mon, 09 May 2011 23:37:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Functions & Recursion]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11773</guid>
		<description>#include &amp;#60;iostream&amp;#62; using namespace std; &amp;#160; int main&amp;#40;&amp;#41; &amp;#123; int n, remainder; cout &amp;#60;&amp;#60; &amp;#34;Enter a number and press ENTER: &amp;#34;; cin &amp;#62;&amp;#62; n; remainder = n % 2; &amp;#160; if &amp;#40;remainder == 0&amp;#41; cout &amp;#60;&amp;#60; &amp;#34;The number is even.&amp;#34; &amp;#8230; &lt;a href="http://w3mentor.com/learn/cc/functions-recursion/test-if-number-is-even-or-odd-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/2PEameFtl7A" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/functions-recursion/test-if-number-is-even-or-odd-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/functions-recursion/test-if-number-is-even-or-odd-in-c/</feedburner:origLink></item>
		<item>
		<title>Calculate square of a number in C</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/2SjRoH6YD64/</link>
		<comments>http://w3mentor.com/learn/cc/interview-questions-cc/calculate-square-of-a-number-in-c/#comments</comments>
		<pubDate>Mon, 09 May 2011 23:35:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Interview Questions]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11770</guid>
		<description>#include &amp;#60;iostream&amp;#62; using namespace std; &amp;#160; int main&amp;#40;&amp;#41; &amp;#123; double n; cout &amp;#60;&amp;#60; &amp;#34;Input a number and press ENTER: &amp;#34;; cin &amp;#62;&amp;#62; n; cout &amp;#60;&amp;#60; &amp;#34;The square is: &amp;#34; &amp;#60;&amp;#60; n * n &amp;#60;&amp;#60; endl; system&amp;#40;&amp;#34;PAUSE&amp;#34;&amp;#41;; return 0; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/2SjRoH6YD64" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/interview-questions-cc/calculate-square-of-a-number-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/interview-questions-cc/calculate-square-of-a-number-in-c/</feedburner:origLink></item>
		<item>
		<title>Convert celsius to farenheit in C++</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/DXeh0Mv67K0/</link>
		<comments>http://w3mentor.com/learn/cc/functions-recursion/convert-celsius-to-farenheit-in-c/#comments</comments>
		<pubDate>Mon, 09 May 2011 23:26:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Functions & Recursion]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11768</guid>
		<description>#include &amp;#60;iostream&amp;#62; using namespace std; &amp;#160; int main&amp;#40;&amp;#41; &amp;#123; double ctemp; // Celsius temperature double ftemp; // Fahrenheit temperature cout &amp;#60;&amp;#60; &amp;#34;Input a Celsius temp and press ENTER: &amp;#34;; cin &amp;#62;&amp;#62; ctemp; ftemp = &amp;#40;ctemp * 1.8&amp;#41; + 32; cout &amp;#8230; &lt;a href="http://w3mentor.com/learn/cc/functions-recursion/convert-celsius-to-farenheit-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/DXeh0Mv67K0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/functions-recursion/convert-celsius-to-farenheit-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/functions-recursion/convert-celsius-to-farenheit-in-c/</feedburner:origLink></item>
		<item>
		<title>Printing multiple lines in C++</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/iowNycLkIEs/</link>
		<comments>http://w3mentor.com/learn/cc/functions-recursion/printing-multiple-lines-in-c/#comments</comments>
		<pubDate>Mon, 09 May 2011 23:24:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Functions & Recursion]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11766</guid>
		<description>#include &amp;#60;iostream&amp;#62; using namespace std; &amp;#160; int main&amp;#40;&amp;#41; &amp;#123; cout &amp;#60;&amp;#60; &amp;#34;welcome,&amp;#34; &amp;#60;&amp;#60; endl; cout &amp;#60;&amp;#60; &amp;#34;to the website.&amp;#34; &amp;#60;&amp;#60; endl; cout &amp;#60;&amp;#60; &amp;#34;w3mentor.com!&amp;#34; &amp;#60;&amp;#60; endl; &amp;#160; system&amp;#40;&amp;#34;PAUSE&amp;#34;&amp;#41;; return 0; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/iowNycLkIEs" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/functions-recursion/printing-multiple-lines-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/functions-recursion/printing-multiple-lines-in-c/</feedburner:origLink></item>
		<item>
		<title>Urlencoding in PHP using urlencode</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/hUgMKSzuE94/</link>
		<comments>http://w3mentor.com/learn/php-mysql-tutorials/php-language-basics/urlencoding-in-php-using-urlencode/#comments</comments>
		<pubDate>Mon, 02 May 2011 16:40:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11764</guid>
		<description>&amp;#60;?php $myurlparam = &amp;#34;hello this is a test message&amp;#34;; $site = &amp;#34;http://www.w3mentor.com&amp;#34;; $query = $site; $query .= &amp;#34;&amp;#38;message=&amp;#34;.urlencode&amp;#40; $myurlparam &amp;#41;; echo $query; ?&amp;#62;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/hUgMKSzuE94" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/php-mysql-tutorials/php-language-basics/urlencoding-in-php-using-urlencode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/php-mysql-tutorials/php-language-basics/urlencoding-in-php-using-urlencode/</feedburner:origLink></item>
		<item>
		<title>Compare two arrays to see if value from form post exists in PHP</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/ZVuE7OqKYec/</link>
		<comments>http://w3mentor.com/learn/php-mysql-tutorials/php-forms/compare-two-arrays-to-see-if-value-from-form-post-exists-in-php/#comments</comments>
		<pubDate>Mon, 02 May 2011 16:35:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Forms]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11762</guid>
		<description>&amp;#60;?php $choices = array&amp;#40;'my choice 1', 'my choice 2', 'my choice 3'&amp;#41;; &amp;#160; $valid = true; if &amp;#40;is_array&amp;#40;$_GET&amp;#91;'inputArray'&amp;#93;&amp;#41;&amp;#41; &amp;#123; $valid = true; foreach&amp;#40;$_GET&amp;#91;'inputArray'&amp;#93; as $input&amp;#41; &amp;#123; if &amp;#40;!in_array&amp;#40;$input, $choices&amp;#41;&amp;#41; &amp;#123; $valid = false; &amp;#125; &amp;#125; &amp;#160; if &amp;#40;$valid&amp;#41; &amp;#123; echo &amp;#8230; &lt;a href="http://w3mentor.com/learn/php-mysql-tutorials/php-forms/compare-two-arrays-to-see-if-value-from-form-post-exists-in-php/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/ZVuE7OqKYec" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/php-mysql-tutorials/php-forms/compare-two-arrays-to-see-if-value-from-form-post-exists-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/php-mysql-tutorials/php-forms/compare-two-arrays-to-see-if-value-from-form-post-exists-in-php/</feedburner:origLink></item>
		<item>
		<title>Using Radio buttons in PHP Form</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/MBhUaidRZlM/</link>
		<comments>http://w3mentor.com/learn/php-mysql-tutorials/php-forms/using-radio-buttons-in-php-form/#comments</comments>
		<pubDate>Mon, 02 May 2011 16:30:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Forms]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11760</guid>
		<description>&amp;#60;html&amp;#62; &amp;#60;body&amp;#62; &amp;#160; &amp;#60;form action=&amp;#34;mychoice.php&amp;#34; method=&amp;#34;post&amp;#34;&amp;#62; &amp;#60;b&amp;#62;Enter Name:&amp;#60;/b&amp;#62; &amp;#60;input type=&amp;#34;text&amp;#34; size=&amp;#34;45&amp;#34; name=&amp;#34;username&amp;#34;&amp;#62; &amp;#60;br&amp;#62; &amp;#60;b&amp;#62;Please select your favorite animal:&amp;#60;/b&amp;#62; &amp;#60;br&amp;#62; &amp;#60;input type=&amp;#34;radio&amp;#34; name=&amp;#34;animal&amp;#34; value=&amp;#34;dog&amp;#34;&amp;#62;Dog &amp;#60;input type=&amp;#34;radio&amp;#34; name=&amp;#34;animal&amp;#34; value=&amp;#34;cat&amp;#34;&amp;#62;Cat &amp;#60;input type=&amp;#34;radio&amp;#34; name=&amp;#34;animal&amp;#34; value=&amp;#34;fish&amp;#34;&amp;#62;Fish &amp;#60;br&amp;#62; &amp;#60;input type=&amp;#34;submit&amp;#34; value=&amp;#34;Submit&amp;#34;&amp;#62; &amp;#60;/form&amp;#62; &amp;#160; &amp;#60;/body&amp;#62; &amp;#60;/html&amp;#62; File: &amp;#8230; &lt;a href="http://w3mentor.com/learn/php-mysql-tutorials/php-forms/using-radio-buttons-in-php-form/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/MBhUaidRZlM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/php-mysql-tutorials/php-forms/using-radio-buttons-in-php-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/php-mysql-tutorials/php-forms/using-radio-buttons-in-php-form/</feedburner:origLink></item>
		<item>
		<title>Radio button validation in PHP using array_key_exists</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/btoAwBNGpgU/</link>
		<comments>http://w3mentor.com/learn/php-mysql-tutorials/php-arrays/radio-button-validation-in-php-using-array_key_exists/#comments</comments>
		<pubDate>Mon, 02 May 2011 16:26:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Arrays]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11758</guid>
		<description>&amp;#60;?php $animals = array&amp;#40;'dog' =&amp;#62; 'D', 'cat' =&amp;#62; 'C', 'bird' =&amp;#62; 'B'&amp;#41;; foreach &amp;#40;$animals as $key =&amp;#62; $animal&amp;#41; &amp;#123; echo &amp;#34;&amp;#60;input type='radio' name='animal' value='$key'/&amp;#62; $animal \n&amp;#34;; &amp;#125; &amp;#160; if &amp;#40;!array_key_exists&amp;#40;$_POST&amp;#91;'animal'&amp;#93;, $animals&amp;#41;&amp;#41; &amp;#123; echo &amp;#34;You must select a valid animal.&amp;#34;; &amp;#125; &amp;#8230; &lt;a href="http://w3mentor.com/learn/php-mysql-tutorials/php-arrays/radio-button-validation-in-php-using-array_key_exists/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/btoAwBNGpgU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/php-mysql-tutorials/php-arrays/radio-button-validation-in-php-using-array_key_exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/php-mysql-tutorials/php-arrays/radio-button-validation-in-php-using-array_key_exists/</feedburner:origLink></item>
		<item>
		<title>Positioning elements on a Silverlight Canvas</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/iAlgNhaRI5A/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/positioning-elements-on-a-silverlight-canvas/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 23:48:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11754</guid>
		<description>The Canvas.Top and Canvas.Left attributes can be set within the children control&amp;#8217;s XAML to position within the Canvas relatively. &amp;#60;UserControl x:Class='TestSilverlightApplication.MainPage' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' xmlns:d='http://schemas.microsoft.com/expression/blend/2008' xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' mc:Ignorable='d' d:DesignWidth='640' d:DesignHeight='480'&amp;#62; &amp;#60;StackPanel Orientation=&amp;#34;Vertical&amp;#34; Background=&amp;#34;Blue&amp;#34;&amp;#62; &amp;#60;Canvas x:Name=&amp;#34;MyCanvas&amp;#34; HorizontalAlignment=&amp;#34;Left&amp;#34; VerticalAlignment=&amp;#34;Top&amp;#34; Height=&amp;#34;200&amp;#34; Width=&amp;#34;400&amp;#34; Background=&amp;#34;White&amp;#34; Margin=&amp;#34;10&amp;#34;&amp;#62; &amp;#60;TextBlock &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/positioning-elements-on-a-silverlight-canvas/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/iAlgNhaRI5A" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/positioning-elements-on-a-silverlight-canvas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/positioning-elements-on-a-silverlight-canvas/</feedburner:origLink></item>
		<item>
		<title>Set padding in silverlight code behind</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/ny6z24zguPU/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/set-padding-in-silverlight-code-behind/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 23:39:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11752</guid>
		<description>Xaml: &amp;#60;UserControl x:Class='TestSilverlightApplication.MainPage' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' xmlns:d='http://schemas.microsoft.com/expression/blend/2008' xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' mc:Ignorable='d' d:DesignWidth='640' d:DesignHeight='480'&amp;#62; &amp;#160; &amp;#60;Canvas Name=&amp;#34;canvas1&amp;#34;&amp;#62; &amp;#60;/Canvas&amp;#62; &amp;#60;/UserControl&amp;#62; Code behind: namespace TestSilverlightApplication &amp;#123; public partial class MainPage : UserControl &amp;#123; Button mybutton = null; &amp;#160; public MainPage&amp;#40;&amp;#41; &amp;#123; InitializeComponent&amp;#40;&amp;#41;; &amp;#125; &amp;#160; private void &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/set-padding-in-silverlight-code-behind/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/ny6z24zguPU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/set-padding-in-silverlight-code-behind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/set-padding-in-silverlight-code-behind/</feedburner:origLink></item>
		<item>
		<title>Change canvas background in Silverlight .Net</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/XIVCELWZolU/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/change-canvas-background-in-silverlight-net/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 23:36:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11750</guid>
		<description>&amp;#60;UserControl x:Class='TestSLApp.MainPage' xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' xmlns:d='http://schemas.microsoft.com/expression/blend/2008' xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' mc:Ignorable='d' d:DesignWidth='640' d:DesignHeight='480'&amp;#62; &amp;#160; &amp;#60;Canvas x:Name=&amp;#34;LayoutRoot&amp;#34; Background=&amp;#34;Red&amp;#34;&amp;#62; &amp;#60;Rectangle Canvas.Left=&amp;#34;100&amp;#34; Canvas.Top=&amp;#34;10&amp;#34; Width=&amp;#34;40&amp;#34; Height=&amp;#34;20&amp;#34; Fill=&amp;#34;Yellow&amp;#34; /&amp;#62; &amp;#60;/Canvas&amp;#62; &amp;#160; &amp;#60;/UserControl&amp;#62;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/XIVCELWZolU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/change-canvas-background-in-silverlight-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/change-canvas-background-in-silverlight-net/</feedburner:origLink></item>
		<item>
		<title>Merge Datasets using C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/sAbwCa86blA/</link>
		<comments>http://w3mentor.com/learn/other/merge-datasets-using-c/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 01:48:52 +0000</pubDate>
		<dc:creator>sbm</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=3986</guid>
		<description>We can merge a dataset to another dataset using Merge. Lets assume we have two datasets ds1 and ds2. DataSet ds1 = new DataSet(); da1.Fill(ds, "temp");&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/sAbwCa86blA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/other/merge-datasets-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/other/merge-datasets-using-c/</feedburner:origLink></item>
		<item>
		<title>perl abs Function</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/ok6X6EdrQPo/</link>
		<comments>http://w3mentor.com/learn/perl/perl-functions/perl-abs-function-2/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 01:48:49 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Functions]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=8584</guid>
		<description>PERL abs FunctionPERL abs Function Syntax abs VALUE abs PERL abs Function Definition and Usage Returns the absolute value of its argument. If pure interger value is passed then it will return it as it is but if a string &amp;#8230; &lt;a href="http://w3mentor.com/learn/perl/perl-functions/perl-abs-function-2/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/ok6X6EdrQPo" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-functions/perl-abs-function-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/perl/perl-functions/perl-abs-function-2/</feedburner:origLink></item>
		<item>
		<title>printf function in PERL</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/e7uFSVAgT58/</link>
		<comments>http://w3mentor.com/learn/perl/perl-functions/printf-function-in-perl/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 01:48:47 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Functions]]></category>
		<category><![CDATA[reference]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=8590</guid>
		<description>PERL printf FunctionPERL printf Function Syntax printf FILEHANDLE FORMAT, LIST printf FORMAT, LIST PERL printf Function Definition and Usage Prints the value of LIST interpreted via the format specified by FORMAT to the current output filehandle, or to the one &amp;#8230; &lt;a href="http://w3mentor.com/learn/perl/perl-functions/printf-function-in-perl/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/e7uFSVAgT58" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-functions/printf-function-in-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/perl/perl-functions/printf-function-in-perl/</feedburner:origLink></item>
		<item>
		<title>Strip out all html tags in string using C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/eH0h9LKz06c/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/strip-out-all-html-tags-in-string-using-c/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 00:15:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11633</guid>
		<description>The tags need not be correctly nested for the below implementation to work.. public static string RemoveHtmlTags&amp;#40;string pInput&amp;#41; &amp;#123; char&amp;#91;&amp;#93; array = new char&amp;#91;pInput.Length&amp;#93;; int arrayIndex = 0; bool inside = false; for &amp;#40;int i = 0; i &amp;#60; pInput.Length; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/strip-out-all-html-tags-in-string-using-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/eH0h9LKz06c" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/strip-out-all-html-tags-in-string-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/strip-out-all-html-tags-in-string-using-c/</feedburner:origLink></item>
		<item>
		<title>Check if remote files exist using C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/_QQMI54_2Mk/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/check-if-remote-files-exist-using-c/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 00:10:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Network Programming]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11631</guid>
		<description>public void CheckFile&amp;#40;&amp;#41; &amp;#123; // The two different files as strings. string urlfile1 = &amp;#34;http://remotehost.com/file1.zip&amp;#34;; string urlfile2 = &amp;#34;http://remotehost.com/file2.zip&amp;#34;; &amp;#160; try &amp;#123; // Check to see if urlfile1 exists HttpWebRequest myrequest = &amp;#40;HttpWebRequest&amp;#41;WebRequest.Create&amp;#40;urlfile1&amp;#41;; myrequest.Credentials = System.Net.CredentialCache.DefaultCredentials; HttpWebResponse response = &amp;#40;HttpWebResponse&amp;#41;myrequest.GetResponse&amp;#40;&amp;#41;; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/check-if-remote-files-exist-using-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/_QQMI54_2Mk" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/check-if-remote-files-exist-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/check-if-remote-files-exist-using-c/</feedburner:origLink></item>
		<item>
		<title>Ping a host machine to check uptime in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/0f2O2NjLDyo/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/ping-a-host-machine-to-check-uptime-in-c/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 19:40:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Network Programming]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11628</guid>
		<description>using System; using System.Collections.Generic; using System.Linq; using System.Text; &amp;#160; namespace ProgramSendPingtoHost &amp;#123; class ProgramSendPingtoHost &amp;#123; static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41; &amp;#123; try &amp;#123; string hostAddress = &amp;#34;127.0.0.1&amp;#34;; System.Net.NetworkInformation.Ping ping = new System.Net.NetworkInformation.Ping&amp;#40;&amp;#41;; System.Net.NetworkInformation.PingReply reply = ping.Send&amp;#40;hostAddress&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;The Host Address: {0}&amp;#34;, reply.Address&amp;#41;; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/ping-a-host-machine-to-check-uptime-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/0f2O2NjLDyo" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/ping-a-host-machine-to-check-uptime-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/ping-a-host-machine-to-check-uptime-in-c/</feedburner:origLink></item>
		<item>
		<title>Convert Enum to Array dynamically in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/6faupTcWP1c/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/convert-enum-to-array-dynamically-in-c/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 19:25:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11625</guid>
		<description>using System; using System.Collections.Generic; using System.Linq; using System.Text; &amp;#160; namespace ProgramEmumtoArray &amp;#123; class ProgramEmumtoArray &amp;#123; static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41; &amp;#123; string&amp;#91;&amp;#93; people = Enum.GetNames&amp;#40;typeof&amp;#40;People&amp;#41;&amp;#41;; foreach &amp;#40;var person in people&amp;#41; &amp;#123; Console.WriteLine&amp;#40;person&amp;#41;; &amp;#125; Console.Read&amp;#40;&amp;#41;; &amp;#125; &amp;#160; enum People &amp;#123; Gandhi, Anthony, &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/convert-enum-to-array-dynamically-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/6faupTcWP1c" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/convert-enum-to-array-dynamically-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/convert-enum-to-array-dynamically-in-c/</feedburner:origLink></item>
		<item>
		<title>Dynamic enumeration of Enum in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/cqxPUqExuV4/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/dynamic-enumeration-of-enum-in-c/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 19:16:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11622</guid>
		<description>using System; using System.Collections.Generic; using System.Linq; using System.Text; &amp;#160; namespace w3mentorConsoleApp &amp;#123; class Program &amp;#123; static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41; &amp;#123; foreach &amp;#40;var car in Enum.GetValues&amp;#40;typeof&amp;#40;Cars&amp;#41;&amp;#41;&amp;#41; &amp;#123; Console.WriteLine&amp;#40;Enum.GetName&amp;#40;typeof&amp;#40;Cars&amp;#41;, car&amp;#41;&amp;#41;; &amp;#125; Console.Read&amp;#40;&amp;#41;; &amp;#125; enum Cars &amp;#123; Ferrari, Polo, GMC, FordExplorer &amp;#125; &amp;#125; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/dynamic-enumeration-of-enum-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/cqxPUqExuV4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/dynamic-enumeration-of-enum-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/dynamic-enumeration-of-enum-in-c/</feedburner:origLink></item>
		<item>
		<title>Sorting a hashtable in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/fo6pxiyVyQ0/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/sorting-a-hashtable-in-c/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 14:45:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Collections and Generics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11619</guid>
		<description>Hashtable myHashTable = new Hashtable&amp;#40;&amp;#41;; myHashTable.Add&amp;#40;&amp;#34;1&amp;#34;, &amp;#34;dotnet&amp;#34;&amp;#41;; myHashTable.Add&amp;#40;&amp;#34;2&amp;#34;, &amp;#34;tutorials&amp;#34;&amp;#41;; myHashTable.Add&amp;#40;&amp;#34;3&amp;#34;, &amp;#34;w3mentor&amp;#34;&amp;#41;; &amp;#160; List&amp;#60;int&amp;#62; myList = new List&amp;#60;int&amp;#62;&amp;#40;&amp;#41;; foreach &amp;#40;var key in hash.Keys&amp;#41; &amp;#123; myList.Add&amp;#40;int.Parse&amp;#40;key.ToString&amp;#40;&amp;#41;&amp;#41;&amp;#41;; &amp;#125; //sort the hashtable myList.Sort&amp;#40;&amp;#41;; &amp;#160; foreach &amp;#40;var item in myList&amp;#41; &amp;#123; Console.WriteLine&amp;#40;string.Format&amp;#40;&amp;#34;{0},{1}&amp;#34;, item, hash&amp;#91;item.ToString&amp;#40;&amp;#41;&amp;#93;&amp;#41;&amp;#41;; &amp;#125; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/sorting-a-hashtable-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/fo6pxiyVyQ0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/sorting-a-hashtable-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-collections-and-generics/sorting-a-hashtable-in-c/</feedburner:origLink></item>
		<item>
		<title>Cloning C# objects using MemberwiseClone</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/unOagFSxa14/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/cloning-c-objects-using-memberwiseclone/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 14:32:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11617</guid>
		<description>public CarClass GetCopy&amp;#40;&amp;#41; &amp;#123; return MemberwiseClone&amp;#40;&amp;#41; as CarClass; &amp;#125; &amp;#160; CarClass beta = new CarClass&amp;#40;&amp;#41;; CarClass newcar = beta.GetCopy&amp;#40;&amp;#41;; bool areCarsEqual = ReferenceEquals&amp;#40;beta, newcar&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;Are cars Equal?: {0}&amp;#34;,areCarsEqual&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/unOagFSxa14" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/cloning-c-objects-using-memberwiseclone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/cloning-c-objects-using-memberwiseclone/</feedburner:origLink></item>
		<item>
		<title>Example of stringbuilder append operation in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/jfx5mOxZfco/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/example-of-stringbuilder-append-operation-in-c/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 14:19:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11613</guid>
		<description>void demoAppendSB&amp;#40;&amp;#41; &amp;#123; StringBuilder sb; sb = new StringBuilder&amp;#40;&amp;#34;This is the existing text&amp;#34;&amp;#41;; sb.Append&amp;#40;&amp;#34;This will be appended&amp;#34;&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;sb.Append(\&amp;#34;Appended\&amp;#34;): {0}&amp;#34;,sb&amp;#41;; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/jfx5mOxZfco" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/example-of-stringbuilder-append-operation-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/example-of-stringbuilder-append-operation-in-c/</feedburner:origLink></item>
		<item>
		<title>Delete newly created file from directory in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/K40gLhV1tNo/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/delete-newly-created-file-from-directory-in-c/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 14:15:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# File Handling]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11611</guid>
		<description>void deleteNewFile&amp;#40;string dirPath&amp;#41; &amp;#123; DirectoryInfo directInfo = new DirectoryInfo&amp;#40;dirPath&amp;#41;; //read directory to enumerate files FileInfo&amp;#91;&amp;#93; filelist = directInfo.GetFiles&amp;#40;&amp;#41;; &amp;#160; var fileList = from n in filelist select new &amp;#123; FileName = n.FullName, CreationDate = n.CreationTime.ToLongDateString&amp;#40;&amp;#41; &amp;#125;; //get list of files &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/delete-newly-created-file-from-directory-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/K40gLhV1tNo" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/delete-newly-created-file-from-directory-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-file-handling/delete-newly-created-file-from-directory-in-c/</feedburner:origLink></item>
		<item>
		<title>Flowdocument in WPF</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/DTS_UJgGBxg/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/flowdocument-in-wpf/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 17:59:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11604</guid>
		<description>The FlowDocument object in WPF can be thought of as a document with contents that can take up/flow to use the available space in the control. The FlowDocument shown below contains controls such as Paragraph, Table, List, Figure and Floater &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/flowdocument-in-wpf/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/DTS_UJgGBxg" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/flowdocument-in-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/flowdocument-in-wpf/</feedburner:origLink></item>
		<item>
		<title>Bulletdecorator in WPF</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/1wgXQsbhe8I/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/bulletdecorator-in-wpf/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 17:50:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11602</guid>
		<description>The BulletDecorator control is used to display a single item and bullet in a bulleted list in WPF. The following xaml code shows how to draw a diamond shaped BulletDecorator next to a textblock. &amp;#60;BulletDecorator&amp;#62; &amp;#60;BulletDecorator.Bullet&amp;#62; &amp;#60;Polygon Margin=” 2, 0, &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/bulletdecorator-in-wpf/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/1wgXQsbhe8I" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/bulletdecorator-in-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/controls/bulletdecorator-in-wpf/</feedburner:origLink></item>
		<item>
		<title>Using TrimStart and TrimEnd in C# strings</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/hLu-TxSnvAs/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/using-trimstart-and-trimend-in-c-strings/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:49:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11600</guid>
		<description>The TrimStart function in C# removes all occurances of a string/character from the beginning of an input string. string testInput=&amp;#34;001&amp;#34;; Int val=Conver.ToInt32&amp;#40;testInput.TrimStart&amp;#40;'0'&amp;#41;&amp;#41;; Console.WriteLine&amp;#40;val&amp;#41;; Ouput: 1 We can use the TrimEnd function if we need to remove the character at the &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/using-trimstart-and-trimend-in-c-strings/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/hLu-TxSnvAs" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/using-trimstart-and-trimend-in-c-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/using-trimstart-and-trimend-in-c-strings/</feedburner:origLink></item>
		<item>
		<title>Find minimum and maximum supported decimal values in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/JIj3uMedhYw/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/find-minimum-and-maximum-supported-decimal-values-in-c/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:44:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11598</guid>
		<description>We can use the following code to find the range for a decimal datatype Console.WriteLine&amp;#40;&amp;#34;Minimum value=&amp;#34; + decimal.MinValue&amp;#41;; Console.WriteLine&amp;#40;&amp;#34;Maximum value=&amp;#34; + decimal.MaxValue&amp;#41;; Console.ReadKey&amp;#40;&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/JIj3uMedhYw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/find-minimum-and-maximum-supported-decimal-values-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/find-minimum-and-maximum-supported-decimal-values-in-c/</feedburner:origLink></item>
		<item>
		<title>Delete a specific xml node in xml file using C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Z9-HX39-nI8/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/delete-a-specific-xml-node-in-xml-file-using-c/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:42:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# XML]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11594</guid>
		<description>protected void DeleteXmlNode&amp;#40;int selectedIndex&amp;#41; &amp;#123; XmlDocument docXml = new XmlDocument&amp;#40;&amp;#41;; docXml.Load&amp;#40;Server.MapPath&amp;#40;@&amp;#34;App_Data\myXmlFile.xml&amp;#34;&amp;#41;&amp;#41;; //locate and load xml file in application XmlNode node = docXml.DocumentElement.ChildNodes.Item&amp;#40;selectedIndex&amp;#41;; //locate specific index node node.ParentNode.RemoveChild&amp;#40;node&amp;#41;; //remove node docXml.Save&amp;#40;Server.MapPath&amp;#40;@&amp;#34;App_Data\mynewXmlFile.xml&amp;#34;&amp;#41;&amp;#41;; //save file &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Z9-HX39-nI8" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/delete-a-specific-xml-node-in-xml-file-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/delete-a-specific-xml-node-in-xml-file-using-c/</feedburner:origLink></item>
		<item>
		<title>Write to an Xml file using Xml Writer in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/a_URAJMvIWM/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/write-to-an-xml-file-using-xml-writer-in-c/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:37:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# XML]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11592</guid>
		<description>C# provides the XmlWriter class which allows developers to write to an Xml file. To begin, we need to import the system.xml namespace. using System.Xml; The system.xml namespace contains the XmlWriter and XmlTextWriter classes. To read an xml file to &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/write-to-an-xml-file-using-xml-writer-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/a_URAJMvIWM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/write-to-an-xml-file-using-xml-writer-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/write-to-an-xml-file-using-xml-writer-in-c/</feedburner:origLink></item>
		<item>
		<title>Add custom data to xml node and save xml file in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/pZv6ziGH7_s/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/add-custom-data-to-xml-node-and-save-xml-file-in-c/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:28:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# XML]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11590</guid>
		<description>protected void AddNodeToXml&amp;#40;&amp;#41; &amp;#123; XmlDocument docXml = new XmlDocument&amp;#40;&amp;#41;; docXml.Load&amp;#40;Server.MapPath&amp;#40;@&amp;#34;App_Data\myXmlFile.xml&amp;#34;&amp;#41;&amp;#41;; //locate the xml file &amp;#160; //Create the node to set the data XmlElement element = docXml.CreateElement&amp;#40;&amp;#34;userprofile&amp;#34;&amp;#41;; XmlElement xmlUser = docXml.CreateElement&amp;#40;&amp;#34;User&amp;#34;&amp;#41;; XmlElement xmlPass = docXml.CreateElement&amp;#40;&amp;#34;Password&amp;#34;&amp;#41;; &amp;#160; xmlUser.InnerText = this.txtUser.Text.Trim&amp;#40;&amp;#41;; xmlPass.InnerText = &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/add-custom-data-to-xml-node-and-save-xml-file-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/pZv6ziGH7_s" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/add-custom-data-to-xml-node-and-save-xml-file-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/add-custom-data-to-xml-node-and-save-xml-file-in-c/</feedburner:origLink></item>
		<item>
		<title>Find a specific node in XML using XmlDocument, XmlNodeList and XmlNode in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/TKwTJorAEFA/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/find-a-specific-node-in-xml-using-xmldocument-xmlnodelist-and-xmlnode-in-c/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:23:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# XML]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11588</guid>
		<description>private void FindXmlDataItem&amp;#40;int sIndex&amp;#41; &amp;#123; XmlDocument docXml = new XmlDocument&amp;#40;&amp;#41;; docXml.Load&amp;#40;Server.MapPath&amp;#40;@&amp;#34;App_Data\myXmlFile.xml&amp;#34;&amp;#41;&amp;#41;; XmlNodeList list = docXml.DocumentElement.ChildNodes; XmlNode node = list.Item&amp;#40;sIndex&amp;#41;; this.txtUser.Text = node&amp;#91;&amp;#34;User&amp;#34;&amp;#93;.InnerText; this.txtPass.Text = node&amp;#91;&amp;#34;Password&amp;#34;&amp;#93;.InnerText; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/TKwTJorAEFA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/find-a-specific-node-in-xml-using-xmldocument-xmlnodelist-and-xmlnode-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/find-a-specific-node-in-xml-using-xmldocument-xmlnodelist-and-xmlnode-in-c/</feedburner:origLink></item>
		<item>
		<title>Load xml file to xml dataset and bind to gridview in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Sm2NtEAVXYE/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/load-xml-file-to-xml-dataset-and-bind-to-gridview-in-c/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:14:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# XML]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11586</guid>
		<description>In the method shown below, we will locate xml file within application, read it to a dataset and then set the xml dataset as datasource to grid view. private void loadandbindXmlData&amp;#40;&amp;#41; &amp;#123; DataSet xmlData = new DataSet&amp;#40;&amp;#41;; xmlData.ReadXml&amp;#40;Server.MapPath&amp;#40;@&amp;#34;App_Data\myXmlFile.xml&amp;#34;&amp;#41;&amp;#41;; //locate xml &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/load-xml-file-to-xml-dataset-and-bind-to-gridview-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Sm2NtEAVXYE" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/load-xml-file-to-xml-dataset-and-bind-to-gridview-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-xml/load-xml-file-to-xml-dataset-and-bind-to-gridview-in-c/</feedburner:origLink></item>
		<item>
		<title>Example using Call By Out parameter in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/EhFQof9aoMM/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/example-using-call-by-out-parameter-in-c/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 01:10:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11583</guid>
		<description>public class OPExample &amp;#123; public void Addme&amp;#40;int x, int y, out int result&amp;#41; &amp;#123; result = x + y; &amp;#125; &amp;#160; static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41; &amp;#123; OPExample obj = new OPExample&amp;#40;&amp;#41;; int a = 1, b = 2, result; obj.Addme&amp;#40;a, &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/example-using-call-by-out-parameter-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/EhFQof9aoMM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/example-using-call-by-out-parameter-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/example-using-call-by-out-parameter-in-c/</feedburner:origLink></item>
		<item>
		<title>Image control in WPF</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/bdaz-QPTFeM/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/image-control-in-wpf/#comments</comments>
		<pubDate>Sun, 27 Mar 2011 20:35:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[WPF .Net]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11581</guid>
		<description>The image control is used to display various formats of images in WPF applications. The basic steps include adding the image control to the window/page and setting its source property. To adjust the dimensions of the image we can set &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/image-control-in-wpf/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/bdaz-QPTFeM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/image-control-in-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/wpf-net/image-control-in-wpf/</feedburner:origLink></item>
		<item>
		<title>Auto variables in different blocks in C</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/p5pb798FJ20/</link>
		<comments>http://w3mentor.com/learn/cc/data-structures/auto-variables-in-different-blocks-in-c/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 15:13:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Data Structures]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11577</guid>
		<description>void main&amp;#40;&amp;#41; &amp;#123; int p=100; clrscr&amp;#40;&amp;#41;; printf&amp;#40;&amp;#34;\n P=%d&amp;#34;,p&amp;#41;; &amp;#123; int p=50; printf&amp;#40;&amp;#34;\n P=%d&amp;#34;,p&amp;#41;; &amp;#125; &amp;#123; int p=40; printf&amp;#40;&amp;#34;\n P=%d&amp;#34;,p&amp;#41;; &amp;#125; printf&amp;#40;&amp;#34;\n P=%d&amp;#34;,p&amp;#41;; &amp;#125; Output P=100 P=50 P=40 P=100 In the above program, the declaration of ‘p’ is made at three &amp;#8230; &lt;a href="http://w3mentor.com/learn/cc/data-structures/auto-variables-in-different-blocks-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/p5pb798FJ20" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/data-structures/auto-variables-in-different-blocks-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/data-structures/auto-variables-in-different-blocks-in-c/</feedburner:origLink></item>
		<item>
		<title>Automatic Variables in C</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/A_OQDTngQVI/</link>
		<comments>http://w3mentor.com/learn/cc/data-structures/automatic-variables-in-c/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 15:11:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Data Structures]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11575</guid>
		<description>auto variables are defined inside a function. A variable declared inside the function without storage class name is, by default, an auto variable. These functions are declared on the stack. The stack provides temporary storage. The scope of the variables &amp;#8230; &lt;a href="http://w3mentor.com/learn/cc/data-structures/automatic-variables-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/A_OQDTngQVI" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/data-structures/automatic-variables-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/data-structures/automatic-variables-in-c/</feedburner:origLink></item>
		<item>
		<title>Access individual elements of array by pointers</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/698CPV6_atU/</link>
		<comments>http://w3mentor.com/learn/cc/arrays-cc/access-individual-elements-of-array-by-pointers/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:53:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Arrays]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11571</guid>
		<description>Access individual elements of array by pointers In the below program, an integer array num is declared and initialized. ptr is an integer pointer. Pointer ptr points to the num by the statement ptr=num;. We can access every element of &amp;#8230; &lt;a href="http://w3mentor.com/learn/cc/arrays-cc/access-individual-elements-of-array-by-pointers/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/698CPV6_atU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/arrays-cc/access-individual-elements-of-array-by-pointers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/arrays-cc/access-individual-elements-of-array-by-pointers/</feedburner:origLink></item>
		<item>
		<title>Initialization of Two-Dimensional Array in C</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/hKFs79A43YQ/</link>
		<comments>http://w3mentor.com/learn/cc/arrays-cc/initialization-of-two-dimensional-array-in-c/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:40:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Arrays]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11569</guid>
		<description>void main&amp;#40;&amp;#41; &amp;#123; int i,j; int num&amp;#91;3&amp;#93;&amp;#91;3&amp;#93;=&amp;#123;&amp;#123;1,2,3&amp;#125;,&amp;#123;4,5,6&amp;#125;,&amp;#123;7,8,9&amp;#125;&amp;#125;; clrscr&amp;#40;&amp;#41;; printf&amp;#40;&amp;#34;Elements of two-dimensional array:\n\n&amp;#34;&amp;#41;; for&amp;#40;i=0;i&amp;#60;=2;i++&amp;#41; &amp;#123; for&amp;#40;j=0;j&amp;#60;=2;j++&amp;#41; printf&amp;#40;&amp;#34;%5d&amp;#34;,num&amp;#91;i&amp;#93;&amp;#91;j&amp;#93;&amp;#41;; printf&amp;#40;&amp;#34;\n&amp;#34;&amp;#41;; &amp;#125; getche&amp;#40;&amp;#41;; &amp;#125; Output Elements of two-dimensional array: 1 2 3 4 5 6 7 8 9&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/hKFs79A43YQ" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/arrays-cc/initialization-of-two-dimensional-array-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/arrays-cc/initialization-of-two-dimensional-array-in-c/</feedburner:origLink></item>
		<item>
		<title>One-Dimensional Array Initialization in C</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/wey7Jflthio/</link>
		<comments>http://w3mentor.com/learn/cc/arrays-cc/one-dimensional-array-initialization-in-c/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:38:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Arrays]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11567</guid>
		<description>main&amp;#40;&amp;#41; &amp;#123; int i=0,num&amp;#91;5&amp;#93;; clrscr&amp;#40;&amp;#41;; printf&amp;#40;&amp;#34;Enter the numbers:&amp;#34;&amp;#41;; while&amp;#40;i&amp;#60;5&amp;#41; &amp;#123; scanf&amp;#40;&amp;#34;%d&amp;#34;,&amp;#38;num&amp;#91;i&amp;#93;&amp;#41;; i++; &amp;#125; getche&amp;#40;&amp;#41;; &amp;#125;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/wey7Jflthio" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/cc/arrays-cc/one-dimensional-array-initialization-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/cc/arrays-cc/one-dimensional-array-initialization-in-c/</feedburner:origLink></item>
		<item>
		<title>Getting all installed printers in system using C# .NET</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/8TGFn2DHQcw/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/getting-all-installed-printers-in-system-using-c-net/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 01:52:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Language Basics]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11564</guid>
		<description>If a printer is installed on the machine, the following code will list the installed printer(s) in the system. Add a listbox named printersList to a windows form and use the following in the form_load. using System.Drawing.Printing; private void Form1_Load&amp;#40;object &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/getting-all-installed-printers-in-system-using-c-net/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/8TGFn2DHQcw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/getting-all-installed-printers-in-system-using-c-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-dot-net-language-basics/getting-all-installed-printers-in-system-using-c-net/</feedburner:origLink></item>
		<item>
		<title>LineBreak and Run in Silverlight/WPF TextBlock</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Ds87fL3TpxA/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/linebreak-and-run-in-silverlightwpf-textblock/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:59:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11560</guid>
		<description>&amp;#60;Grid&amp;#62; &amp;#60;TextBlock&amp;#62; Hello World. &amp;#60;LineBreak /&amp;#62;This is the second line. The breaking of the lines in the XAML are &amp;#60;Run Foreground=&amp;#34;Red&amp;#34;&amp;#62;not significant&amp;#60;/Run&amp;#62;. &amp;#60;/TextBlock&amp;#62; &amp;#60;/Grid&amp;#62; A LineBreak indicates where line breaks are going to occur without regard to the TextWrapping property. &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/linebreak-and-run-in-silverlightwpf-textblock/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Ds87fL3TpxA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/linebreak-and-run-in-silverlightwpf-textblock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/linebreak-and-run-in-silverlightwpf-textblock/</feedburner:origLink></item>
		<item>
		<title>Example of TextBlock properties in Silverlight/WPF</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Siiizys4qN4/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-textblock-properties-in-silverlightwpf/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:58:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11558</guid>
		<description>&amp;#60;Grid&amp;#62; &amp;#60;TextBlock Text=&amp;#34;Hello World&amp;#34; Foreground=&amp;#34;White&amp;#34; FontFamily=&amp;#34;Segoe WP&amp;#34; FontSize=&amp;#34;18&amp;#34; FontWeight=&amp;#34;Bold&amp;#34; FontStyle=&amp;#34;Italic&amp;#34; TextWrapping=&amp;#34;Wrap&amp;#34; TextAlignment=&amp;#34;Center&amp;#34; /&amp;#62; &amp;#60;/Grid&amp;#62;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Siiizys4qN4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-textblock-properties-in-silverlightwpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-textblock-properties-in-silverlightwpf/</feedburner:origLink></item>
		<item>
		<title>Paint an image using ImageBrush in Silverlight/WPF</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/LSStXJ9FWcU/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/paint-an-image-using-imagebrush-in-silverlightwpf/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:56:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11556</guid>
		<description>&amp;#60;Ellipse&amp;#62; &amp;#60;Ellipse.Fill&amp;#62; &amp;#60;ImageBrush ImageSource=&amp;#34;/imagename.jpg&amp;#34; /&amp;#62; &amp;#60;/Ellipse.Fill&amp;#62; &amp;#60;/Ellipse&amp;#62;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/LSStXJ9FWcU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/paint-an-image-using-imagebrush-in-silverlightwpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/paint-an-image-using-imagebrush-in-silverlightwpf/</feedburner:origLink></item>
		<item>
		<title>Example of using RadialGradientBrush in silverlight XAML</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/mT8bKelbrAQ/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-using-radialgradientbrush-in-silverlight-xaml/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:50:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11554</guid>
		<description>The RadialGradientBrush brush Paints a gradient between a focal point and a circle on the outside of the shape. &amp;#60;Ellipse&amp;#62; &amp;#60;Ellipse.Fill&amp;#62; &amp;#60;RadialGradientBrush&amp;#62; &amp;#60;GradientStop Color=&amp;#34;Black&amp;#34; Offset=&amp;#34;0&amp;#34; /&amp;#62; &amp;#60;GradientStop Color=&amp;#34;Red&amp;#34; Offset=&amp;#34;1&amp;#34; /&amp;#62; &amp;#60;/RadialGradientBrush&amp;#62; &amp;#60;/Ellipse.Fill&amp;#62; &amp;#60;/Ellipse&amp;#62;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/mT8bKelbrAQ" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-using-radialgradientbrush-in-silverlight-xaml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-using-radialgradientbrush-in-silverlight-xaml/</feedburner:origLink></item>
		<item>
		<title>Example of using LinearGradientBrush in Silverlight XAML</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/ElotQsFl99s/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-using-lineargradientbrush-in-silverlight-xaml/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:48:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11552</guid>
		<description>&amp;#60;Ellipse&amp;#62; &amp;#60;Ellipse.Fill&amp;#62; &amp;#60;LinearGradientBrush&amp;#62; &amp;#60;GradientStop Color=&amp;#34;Blue&amp;#34; Offset=&amp;#34;0&amp;#34; /&amp;#62; &amp;#60;GradientStop Color=&amp;#34;Red&amp;#34; Offset=&amp;#34;1&amp;#34; /&amp;#62; &amp;#60;/LinearGradientBrush&amp;#62; &amp;#60;/Ellipse.Fill&amp;#62; &amp;#60;/Ellipse&amp;#62;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/ElotQsFl99s" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-using-lineargradientbrush-in-silverlight-xaml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/example-of-using-lineargradientbrush-in-silverlight-xaml/</feedburner:origLink></item>
		<item>
		<title>Drawing a bezier curve in silverlight XAML</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/YKunrMDpbIw/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/drawing-a-bezier-curve-in-silverlight-xaml/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:46:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11550</guid>
		<description>We can draw a curved line by populating the Data attribute to a PathGeometry element that specifies a Path and contains a BezierSegment (from 0,50 to 100,50 with control points of 50,0 and 50,100 as the curves). &amp;#60;Path Stroke=&amp;#34;Black&amp;#34;&amp;#62; &amp;#60;Path.Data&amp;#62; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/drawing-a-bezier-curve-in-silverlight-xaml/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/YKunrMDpbIw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/drawing-a-bezier-curve-in-silverlight-xaml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/drawing-a-bezier-curve-in-silverlight-xaml/</feedburner:origLink></item>
		<item>
		<title>What is asterix or star in grid row and column in XAML</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/bLPtd7iHELU/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-asterix-or-star-in-grid-row-and-column-in-xaml/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:42:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11546</guid>
		<description>When the height or width of a row or column is set to star, the size is set based on the proportion. Just a star means the content will stretch to fit the available size. Examples: &amp;#60;RowDefinition Height=&amp;#34;*&amp;#34; /&amp;#62; //100% &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-asterix-or-star-in-grid-row-and-column-in-xaml/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/bLPtd7iHELU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-asterix-or-star-in-grid-row-and-column-in-xaml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-asterix-or-star-in-grid-row-and-column-in-xaml/</feedburner:origLink></item>
		<item>
		<title>What is Auto in XAML grid row and column?</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/ONix7AVCbNA/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-auto-in-xaml-grid-row-and-column/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:34:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11544</guid>
		<description>If we set the height or width to auto it means that the row or column size will be based on the contents. The size of each row or column will be determined by the largest object in a respective &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-auto-in-xaml-grid-row-and-column/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/ONix7AVCbNA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-auto-in-xaml-grid-row-and-column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/what-is-auto-in-xaml-grid-row-and-column/</feedburner:origLink></item>
		<item>
		<title>Creating rows and columns in grid using XAML</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/FAVj-p3h0SU/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/creating-rows-and-columns-in-grid-using-xaml/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 02:30:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET Silverlight]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11541</guid>
		<description>Creating new columns and rows is done using the ColumnDefinitions and RowDefintions properties on a grid. This allows you to specify that individual elements are in a particular row or column using the attached property. &amp;#60;UserControl x:Class=&amp;#34;silverlight.Sample&amp;#34; xmlns=&amp;#34;http://schemas.microsoft.com/winfx/2006/xaml/presentation&amp;#34; xmlns:x=&amp;#34;http://schemas.microsoft.com/winfx/2006/xaml&amp;#34;&amp;#62; &amp;#60;Grid&amp;#62; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/creating-rows-and-columns-in-grid-using-xaml/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/FAVj-p3h0SU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/creating-rows-and-columns-in-grid-using-xaml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/net-silverlight/creating-rows-and-columns-in-grid-using-xaml/</feedburner:origLink></item>
		<item>
		<title>How to Deserialize string returned by webservice to an object in C#(CSharp)</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/hyz9vZH_jm8/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-deserialize-string-returned-by-webservice-to-an-object-in-ccsharp/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 17:24:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Network Programming]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11537</guid>
		<description>public static T Deserialize&amp;#60;T&amp;#62;&amp;#40;string data&amp;#41; &amp;#123; T result; XmlSerializer xSer = new XmlSerializer&amp;#40;typeof&amp;#40;T&amp;#41;&amp;#41;; using &amp;#40;StringReader sr = new StringReader&amp;#40;data&amp;#41;&amp;#41; &amp;#123; result = &amp;#40;T&amp;#41;xSer.Deserialize&amp;#40;sr&amp;#41;; &amp;#125; return result; &amp;#125; Using it: string result = &amp;#34;&amp;#60;?xml 1.0 ... &amp;#60;person&amp;#62;&amp;#60;site&amp;#62;w3mentor.com&amp;#60;/site&amp;#62;&amp;#60;/person&amp;#62;...&amp;#34;; //returned from web service &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-deserialize-string-returned-by-webservice-to-an-object-in-ccsharp/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/hyz9vZH_jm8" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-deserialize-string-returned-by-webservice-to-an-object-in-ccsharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-deserialize-string-returned-by-webservice-to-an-object-in-ccsharp/</feedburner:origLink></item>
		<item>
		<title>How to Serialize any object to string using XmlSerializer for Webservices in C#(CSharp)</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/QHnTmiSk5wI/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-serialize-any-object-to-string-using-xmlserializer-for-webservices-in-ccsharp/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 17:08:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C# Network Programming]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11534</guid>
		<description>public static string Serialize&amp;#60;T&amp;#62;&amp;#40;T dataObject&amp;#41; &amp;#123; StringBuilder sb = new StringBuilder&amp;#40;&amp;#41;; if &amp;#40;dataObject != null&amp;#41; &amp;#123; XmlSerializer xSer = new XmlSerializer&amp;#40;typeof&amp;#40;T&amp;#41;&amp;#41;; using &amp;#40;StringWriter sw = new StringWriter&amp;#40;sb&amp;#41;&amp;#41; &amp;#123; //for empty namespace XmlSerializerNamespaces ns = new XmlSerializerNamespaces&amp;#40;&amp;#41;; ns.Add&amp;#40;&amp;#34;&amp;#34;, &amp;#34;&amp;#34;&amp;#41;; &amp;#160; xSer.Serialize&amp;#40;sw, &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-serialize-any-object-to-string-using-xmlserializer-for-webservices-in-ccsharp/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/QHnTmiSk5wI" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-serialize-any-object-to-string-using-xmlserializer-for-webservices-in-ccsharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-network-programming/how-to-serialize-any-object-to-string-using-xmlserializer-for-webservices-in-ccsharp/</feedburner:origLink></item>
		<item>
		<title>Binding output parameters in PERL DBI and MySQL</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/uX3M8Ei3NH4/</link>
		<comments>http://w3mentor.com/learn/perl/modules/binding-output-parameters-in-perl-dbi-and-mysql/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 17:21:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Modules]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11531</guid>
		<description>my $dbh= DBI-&amp;#62;connect_cached&amp;#40;'DBI:mysql: test','username','password',&amp;#123;private_connection_key1 =&amp;#62;'connX'&amp;#125;&amp;#41; my $sth= prepare&amp;#40;'SELECT id, name FROM t1'&amp;#41; ; $sth-&amp;#62;execute&amp;#40;&amp;#41;; my &amp;#40;$id, $name&amp;#41; ; $sth-&amp;#62;bind_col&amp;#40;1, \$id&amp;#41;; $sth-&amp;#62;bind_col&amp;#40;2, \$name&amp;#41;; print &amp;#40;$id&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/uX3M8Ei3NH4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/modules/binding-output-parameters-in-perl-dbi-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/perl/modules/binding-output-parameters-in-perl-dbi-and-mysql/</feedburner:origLink></item>
		<item>
		<title>Reading data from MySQL using Perl DBI</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/LhxMrrsuuJc/</link>
		<comments>http://w3mentor.com/learn/perl/modules/reading-data-from-mysql-using-perl-dbi/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 17:17:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Modules]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11529</guid>
		<description>We can use prepare to execute read statements. The process is similar to insert statement, except after calling execute( ) , you need to fetch the resultant data set. my $dbh= DBI-&amp;#62;connect_cached&amp;#40;'DBI:mysql: test','username','password',&amp;#123;private_connection_key1 =&amp;#62;'connX'&amp;#125;&amp;#41; $sth= $dbh-&amp;#62;prepare&amp;#40; &amp;#34;select * from testtable&amp;#34; &amp;#8230; &lt;a href="http://w3mentor.com/learn/perl/modules/reading-data-from-mysql-using-perl-dbi/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/LhxMrrsuuJc" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/modules/reading-data-from-mysql-using-perl-dbi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/perl/modules/reading-data-from-mysql-using-perl-dbi/</feedburner:origLink></item>
		<item>
		<title>MySQL and DBI using binding</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Xg7x6ZL1lM8/</link>
		<comments>http://w3mentor.com/learn/perl/modules/mysql-and-dbi-using-binding/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 17:16:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Modules]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11527</guid>
		<description>my $dbh= DBI-&amp;#62;connect_cached&amp;#40;'DBI:mysql: test','username','password',&amp;#123;private_connection_key1 =&amp;#62;'connX'&amp;#125;&amp;#41; $sth= $dbh-&amp;#62;prepare&amp;#40; &amp;#34;insert into testtable values (?, ?) &amp;#34;&amp;#41; or die &amp;#34; ERROR in prepare: &amp;#34; . $dbh-&amp;#62;errstr . &amp;#34;\n&amp;#34;; my $rv= $sth-&amp;#62;execute&amp;#40; 1, 'first' &amp;#41; ; print &amp;#34;rows affected $rv\n&amp;#34; ;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Xg7x6ZL1lM8" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/modules/mysql-and-dbi-using-binding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/perl/modules/mysql-and-dbi-using-binding/</feedburner:origLink></item>
		<item>
		<title>Insert data into table using Perl and MySQL</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/kH3WrN4EtfE/</link>
		<comments>http://w3mentor.com/learn/perl/modules/insert-data-into-table-using-perl-and-mysql/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 17:13:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Modules]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11525</guid>
		<description>my $dbh= DBI-&amp;#62;connect_cached&amp;#40; ’DBI:mysql: test’ , ‘ username’ , ‘ password’ , &amp;#123; private_connection_key1 =&amp;#62; ‘ connX’ &amp;#125;&amp;#41; my $sth= $dbh-&amp;#62;prepare&amp;#40;&amp;#34;insert into testtable values (1, ‘ first’ ) &amp;#34; &amp;#41; or die &amp;#34; ERROR in prepare: &amp;#34; . $dbh-&amp;#62;errstr . &amp;#8230; &lt;a href="http://w3mentor.com/learn/perl/modules/insert-data-into-table-using-perl-and-mysql/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/kH3WrN4EtfE" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/modules/insert-data-into-table-using-perl-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/perl/modules/insert-data-into-table-using-perl-and-mysql/</feedburner:origLink></item>
		<item>
		<title>Create and display custom objects using JavaScript</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/bW2FKZeGJ2o/</link>
		<comments>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-and-display-custom-objects-using-javascript/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 03:33:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Object oriented Javascript]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11521</guid>
		<description>&amp;#60;!DOCTYPE HTML PUBLIC &amp;#34;-//W3C//DTD HTML 4.01 Transitional//EN&amp;#34;&amp;#62; &amp;#60;html&amp;#62; &amp;#60;head&amp;#62; &amp;#60;title&amp;#62;JavaScript - Create and Display Object Types&amp;#60;/title&amp;#62; &amp;#60;/head&amp;#62; &amp;#60;script language=&amp;#34;JavaScript&amp;#34;&amp;#62; &amp;#160; // ************************************************************************ // CREATE AN AUTOMOBILE USING A CONSTRUCTOR // ************************************************************************ function Automobile&amp;#40;manufacturer, model, series&amp;#41; &amp;#123; &amp;#160; &amp;#160; // ************************************************************************ &amp;#8230; &lt;a href="http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-and-display-custom-objects-using-javascript/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/bW2FKZeGJ2o" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-and-display-custom-objects-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-and-display-custom-objects-using-javascript/</feedburner:origLink></item>
		<item>
		<title>Create a Monthly Auto Loan Payment Calculator in Javascript</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/6IzDx8n9nTQ/</link>
		<comments>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-a-monthly-auto-loan-payment-calculator-in-javascript/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 03:31:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Object oriented Javascript]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11519</guid>
		<description>&amp;#60;!DOCTYPE HTML PUBLIC &amp;#34;-//W3C//DTD HTML 4.01 Transitional//EN&amp;#34;&amp;#62; &amp;#60;html&amp;#62; &amp;#60;head&amp;#62; &amp;#60;title&amp;#62;JavaScript - Loan Calculator&amp;#60;/title&amp;#62; &amp;#60;/head&amp;#62; &amp;#160; &amp;#60;script language=&amp;#34;JavaScript&amp;#34;&amp;#62; function calculateLoan&amp;#40;&amp;#41; &amp;#123; nMon = document.form1.txtNumerOfMonths.value; iRate = document.form1.txtInterestRate.value; aFinanced = document.form1.txtAmountFinanced.value; mPayment = &amp;#40;iRate * aFinanced&amp;#41;/ nMon; &amp;#160; alert&amp;#40;'Your monthly payment would &amp;#8230; &lt;a href="http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-a-monthly-auto-loan-payment-calculator-in-javascript/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/6IzDx8n9nTQ" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-a-monthly-auto-loan-payment-calculator-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/create-a-monthly-auto-loan-payment-calculator-in-javascript/</feedburner:origLink></item>
		<item>
		<title>Illustrate how to manipulate JavaScript variables for web pages</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/7rysLZEd58s/</link>
		<comments>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-how-to-manipulate-javascript-variables-for-web-pages/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 03:29:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Object oriented Javascript]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11517</guid>
		<description>&amp;#60;!DOCTYPE HTML PUBLIC &amp;#34;-//W3C//DTD HTML 4.01 Transitional//EN&amp;#34;&amp;#62; &amp;#60;html&amp;#62; &amp;#60;head&amp;#62; &amp;#60;title&amp;#62;JavaScript - Creating JavaScript variables for web pages 1&amp;#60;/title&amp;#62; &amp;#60;/head&amp;#62; &amp;#160; &amp;#60;script language=&amp;#34;JavaScript&amp;#34;&amp;#62; &amp;#160; // ************************************************************************ // DEFINE BEHAVIOR TO ACCESS ATTRIBUTES // ************************************************************************ function getFullName&amp;#40;&amp;#41; &amp;#123; var firstName, lastName, fullName; &amp;#8230; &lt;a href="http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-how-to-manipulate-javascript-variables-for-web-pages/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/7rysLZEd58s" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-how-to-manipulate-javascript-variables-for-web-pages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-how-to-manipulate-javascript-variables-for-web-pages/</feedburner:origLink></item>
		<item>
		<title>Example of Encapsulation using JavaScript</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/kJhuEgQovXk/</link>
		<comments>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-of-encapsulation-using-javascript/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 03:24:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Object oriented Javascript]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11515</guid>
		<description>&amp;#60;!DOCTYPE HTML PUBLIC &amp;#34;-//W3C//DTD HTML 4.01 Transitional//EN&amp;#34;&amp;#62; &amp;#60;html&amp;#62; &amp;#60;head&amp;#62; &amp;#60;title&amp;#62;JavaScript - Encapsulation Exercise&amp;#60;/title&amp;#62; &amp;#60;/head&amp;#62; &amp;#160; &amp;#60;body&amp;#62; &amp;#60;p&amp;#62; &amp;#60;script language=&amp;#34;JavaScript&amp;#34; type=&amp;#34;text/JavaScript&amp;#34;&amp;#62; &amp;#160; // ************************************************************************ // CREATE AN AUTOMOBILE USING A CONSTRUCTOR // ************************************************************************ function Automobile&amp;#40;speed&amp;#41; &amp;#123; &amp;#160; // ************************************************************************ // PUBLIC &amp;#8230; &lt;a href="http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-of-encapsulation-using-javascript/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/kJhuEgQovXk" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-of-encapsulation-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-of-encapsulation-using-javascript/</feedburner:origLink></item>
		<item>
		<title>Example to illustrate Polymorphism using JavaScript</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/MY5L-Y9e8uk/</link>
		<comments>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-polymorphism-using-javascript/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 03:21:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Object oriented Javascript]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11511</guid>
		<description>To illustrate Polymorphism using JavaScript we define a base object called Automobile with attributes and behaviors. Then we create sub object called Mercedes and Porshce to share the Automobiles attributes and behaviors. &amp;#60;!DOCTYPE HTML PUBLIC &amp;#34;-//W3C//DTD HTML 4.01 Transitional//EN&amp;#34;&amp;#62; &amp;#60;html&amp;#62; &amp;#8230; &lt;a href="http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-polymorphism-using-javascript/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/MY5L-Y9e8uk" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-polymorphism-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/illustrate-polymorphism-using-javascript/</feedburner:origLink></item>
		<item>
		<title>Example to illustrate Inheritance using JavaScript</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/9rTmEZV250g/</link>
		<comments>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-to-illustrate-inerhitance-using-javascript/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 03:15:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Object oriented Javascript]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11507</guid>
		<description>In the example we define a base object called Car, and Create sub object called ferrari that inherits attributes from Car. &amp;#60;!DOCTYPE HTML PUBLIC &amp;#34;-//W3C//DTD HTML 4.01 Transitional//EN&amp;#34;&amp;#62; &amp;#60;html&amp;#62; &amp;#60;head&amp;#62; &amp;#60;title&amp;#62;JavaScript - Inheritance Example&amp;#60;/title&amp;#62; &amp;#60;/head&amp;#62; &amp;#160; &amp;#60;body&amp;#62; &amp;#60;p&amp;#62; &amp;#60;script language=&amp;#34;JavaScript&amp;#34; &amp;#8230; &lt;a href="http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-to-illustrate-inerhitance-using-javascript/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/9rTmEZV250g" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-to-illustrate-inerhitance-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/javascript-examples/object-oriented-javascript/example-to-illustrate-inerhitance-using-javascript/</feedburner:origLink></item>
		<item>
		<title>Set background image of excel worksheet using Javascript setbackgroundpicture</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/42_VFDwJUpI/</link>
		<comments>http://w3mentor.com/learn/javascript-examples/activex/set-background-image-of-excel-worksheet-using-javascript-setbackgroundpicture/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 21:31:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActiveX]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11505</guid>
		<description>var oexcel = new ActiveXObject&amp;#40;&amp;#34;excel.application&amp;#34;&amp;#41;; oexcel.visible = true; &amp;#160; var oworkbook = oexcel.workbooks.add; var oworksheet = oworkbook.worksheets&amp;#40;1&amp;#41;; oworksheet.setbackgroundpicture&amp;#40;&amp;#34;c:\\myimg.jpg&amp;#34;&amp;#41;;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/42_VFDwJUpI" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/javascript-examples/activex/set-background-image-of-excel-worksheet-using-javascript-setbackgroundpicture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/javascript-examples/activex/set-background-image-of-excel-worksheet-using-javascript-setbackgroundpicture/</feedburner:origLink></item>
		<item>
		<title>How to fill a DataSet Object in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/BPrgPtjSd9A/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/how-to-fill-a-dataset-object-in-c/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 14:13:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ADO.NET Examples]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11503</guid>
		<description>Add a Button control named btnLoad and a DataGrid control named dgProducts on the form/page. using System.Data; using System.Data.SqlClient; private void btnLoad_Click&amp;#40;object sender, System.EventArgs e&amp;#41; &amp;#123; // Create a SqlConnection SqlConnection cnn = new SqlConnection&amp;#40; &amp;#34;Data Source=(local); Initial Catalog=Northwind;&amp;#34;+ &amp;#34; &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/how-to-fill-a-dataset-object-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/BPrgPtjSd9A" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/how-to-fill-a-dataset-object-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/how-to-fill-a-dataset-object-in-c/</feedburner:origLink></item>
		<item>
		<title>Using a ADO.NET SqlDataReader Object in C#</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/qhuycvZWVus/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/using-a-ado-net-sqldatareader-object-in-c/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 14:07:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ADO.NET Examples]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11501</guid>
		<description>Add a Button control (btnGetCustomers) and a ListBox control (lbCustomers) to your form/page. using System.Data; using System.Data.SqlClient; &amp;#160; private void btnGetCustomers_Click&amp;#40;object sender, System.EventArgs e&amp;#41; &amp;#123; // Connect to the database SqlConnection cnn = new SqlConnection&amp;#40;&amp;#41;; cnn.ConnectionString = &amp;#34;Data Source=(local);&amp;#34; + &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/using-a-ado-net-sqldatareader-object-in-c/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/qhuycvZWVus" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/using-a-ado-net-sqldatareader-object-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/using-a-ado-net-sqldatareader-object-in-c/</feedburner:origLink></item>
		<item>
		<title>What are the different data provider objects in ADO.NET</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/QkS08Toe7JM/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/what-are-the-different-data-provider-objects-in-ado-net/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 14:04:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ADO.NET Examples]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11499</guid>
		<description>The five main data provider objects are: 1.Connection 2.Command 3.Parameter 4.DataReader 5.DataAdapter These are the generic names for the classes defined in System.Data.Common namespace.&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/QkS08Toe7JM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/what-are-the-different-data-provider-objects-in-ado-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/c-ado-net/ado-net-examples/what-are-the-different-data-provider-objects-in-ado-net/</feedburner:origLink></item>
		<item>
		<title>How to call web services in asp.net ajax</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/22Ym8JRRYjw/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-call-web-services-in-asp-net-ajax/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:52:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11496</guid>
		<description>Calling WebService in ASP.NET AJAX need to create a ServiceReference using ScriptManager&gt;Services and using ScriptReference tag. &amp;#60;asp:ScriptManager runat=&amp;#34;server&amp;#34; ID=&amp;#34;SM1&amp;#34;&amp;#62; &amp;#60;Services&amp;#62; &amp;#60;asp:ServiceReference Path=&amp;#34;MathService.asmx&amp;#34; /&amp;#62; &amp;#60;/Services&amp;#62; &amp;#60;/asp:ScriptManager&amp;#62; Here it is assumed that you have created a MathService.asmx web service. Note that when &amp;#8230; &lt;a href="http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-call-web-services-in-asp-net-ajax/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/22Ym8JRRYjw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-call-web-services-in-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-call-web-services-in-asp-net-ajax/</feedburner:origLink></item>
		<item>
		<title>How to maintain the history (back and forward button) in the browser?</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/02pxF1Tacs4/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-maintain-the-history-back-and-forward-button-in-the-browser/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:50:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11494</guid>
		<description>.NET Framework 3.5 with SP1 onwards, ASP.NET AJAX gives us ability to maintain the history of the browser when we perform certain action. This is done by setting the EnableHistory property to “true” and adding the OnNavigate event handler.&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/02pxF1Tacs4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-maintain-the-history-back-and-forward-button-in-the-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-maintain-the-history-back-and-forward-button-in-the-browser/</feedburner:origLink></item>
		<item>
		<title>How to update the UpdatePanel from server side?</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/Uu3_wVqnqRQ/</link>
		<comments>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-update-the-updatepanel-from-server-side/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:50:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11492</guid>
		<description>Updating the panel form code behind is easy, you need to call the public method Update() in the code behind and rest will be taken care.&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/Uu3_wVqnqRQ" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-update-the-updatepanel-from-server-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://w3mentor.com/learn/asp-dot-net-c-sharp/asp-net-ajax/how-to-update-the-updatepanel-from-server-side/</feedburner:origLink></item>
		<item>
		<title>Timer in ASP.NET Ajax</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/o9sNj_ZHJsI/</link>
		<comments>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/timer-in-asp-net-ajax/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:48:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11490</guid>
		<description>While working with asynchronous postbacks we might want these postback to happen after a specific interval, this can be done using Timer control. This has an event called “OnTick” that is used to specify a server side event that fires &amp;#8230; &lt;a href="http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/timer-in-asp-net-ajax/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/o9sNj_ZHJsI" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/timer-in-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[ASP.NET Ajax]]></series:name>
	<feedburner:origLink>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/timer-in-asp-net-ajax/</feedburner:origLink></item>
		<item>
		<title>UpdateProgress in ASP.NET Ajax</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/MB4KM-cxY-Q/</link>
		<comments>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updateprogress-in-asp-net-ajax/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:46:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11488</guid>
		<description>UpdateProgress control is used to display a feedback about the action being performed by ASP.NET Ajax. This feedback can be in the form of some image or a text (eg. processing … or please wait ….). This control has one &amp;#8230; &lt;a href="http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updateprogress-in-asp-net-ajax/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/MB4KM-cxY-Q" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updateprogress-in-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[ASP.NET Ajax]]></series:name>
	<feedburner:origLink>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updateprogress-in-asp-net-ajax/</feedburner:origLink></item>
		<item>
		<title>How to conditional update UpdatePanel in ASP.NET Ajax?</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/qlc7xcdbzII/</link>
		<comments>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/how-to-conditional-update-updatepanel-in-asp-net-ajax/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:44:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11486</guid>
		<description>If more than one UpdatePanel is placed on the page and there is a need of a. Updating only a specific UpdatePanel, we can set UpdateMode as “Conditional” to all the UpdatePanels so that only corresponding UpdatePanel will update on &amp;#8230; &lt;a href="http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/how-to-conditional-update-updatepanel-in-asp-net-ajax/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/qlc7xcdbzII" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/how-to-conditional-update-updatepanel-in-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[ASP.NET Ajax]]></series:name>
	<feedburner:origLink>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/how-to-conditional-update-updatepanel-in-asp-net-ajax/</feedburner:origLink></item>
		<item>
		<title>UpdatePanel in ASP.NET Ajax</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/rgq1OvZCgzA/</link>
		<comments>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updatepanel-in-asp-net-ajax/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:43:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11484</guid>
		<description>Update Panel is used to update the partial portion of the web page. It has two sub elements 1. ContentTemplate – used to specify the content need to update partially (Look at UpdatePanelSimple.aspx page) 2. Triggers a. AsyncPostBackTrigger &amp;#8211; used &amp;#8230; &lt;a href="http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updatepanel-in-asp-net-ajax/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/rgq1OvZCgzA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updatepanel-in-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[ASP.NET Ajax]]></series:name>
	<feedburner:origLink>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/updatepanel-in-asp-net-ajax/</feedburner:origLink></item>
		<item>
		<title>ScriptManager in ASP.NET Ajax</title>
		<link>http://feedproxy.google.com/~r/w3mentor/~3/o0Swoe9638M/</link>
		<comments>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/scriptmanager-in-asp-net-ajax/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:42:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET Ajax]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=11482</guid>
		<description>In order to work with ASP.NET AJAX, an .aspx page must have a ScriptManager tag. Without it ASP.NET AJAX doesn’t work as it provides necessary framework to work with UpdatePanel and other ASP.NET AJAX Server controls. Some of the frequently &amp;#8230; &lt;a href="http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/scriptmanager-in-asp-net-ajax/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/w3mentor/~4/o0Swoe9638M" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/scriptmanager-in-asp-net-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[ASP.NET Ajax]]></series:name>
	<feedburner:origLink>http://w3mentor.com/learn/lessons/asp-net-ajax-lessons/scriptmanager-in-asp-net-ajax/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: w3mentor.com @ 2012-01-28 20:17:35 -->

