<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ferolen - IT Help and Tutorial Blog &#187; Uncategorized</title>
	<atom:link href="http://www.ferolen.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ferolen.com/blog</link>
	<description>Resources, FAQ, Help, Tutorial for your IT problem from day to day computer to web development problem.</description>
	<lastBuildDate>Fri, 09 Dec 2011 14:02:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Microsoft HTTPAPI/2.0 use Port 80 &#8211; Cannot Start WAMP Apache</title>
		<link>http://www.ferolen.com/blog/microsoft-httpapi2-0-use-port-80-cannot-start-wamp-apache/</link>
		<comments>http://www.ferolen.com/blog/microsoft-httpapi2-0-use-port-80-cannot-start-wamp-apache/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 14:02:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ferolen.com/blog/?p=107</guid>
		<description><![CDATA[I just installed fresh Microsoft Windows 7, and I installed WAMP for my APACHE &#8211; PHP server. When I want to start the server, the WAMP icon turn yellow (not green). Upon further investigation, I found out that when I go to WAMP dock icon -> Apache -> Service -> Test Port 80, I received [...]]]></description>
		<wfw:commentRss>http://www.ferolen.com/blog/microsoft-httpapi2-0-use-port-80-cannot-start-wamp-apache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How it works: ASP.NET Custom Validator</title>
		<link>http://www.ferolen.com/blog/how-it-works-asp-net-custom-validator/</link>
		<comments>http://www.ferolen.com/blog/how-it-works-asp-net-custom-validator/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 00:48:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ferolen.com/blog/?p=96</guid>
		<description><![CDATA[This time I will highlight how ASP.NET validator works (in particular the Custom Validator). This control has almost the same attributes as the other validation controls, but with Custom Validator you can specify your own method (Server code and Client script) to validate.]]></description>
		<wfw:commentRss>http://www.ferolen.com/blog/how-it-works-asp-net-custom-validator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Floating Element Causes Disappearing (Phantom) Background Image CSS in IE7, IE6</title>
		<link>http://www.ferolen.com/blog/floating-element-causes-disappearing-phantom-background-image-css-in-ie7-ie6/</link>
		<comments>http://www.ferolen.com/blog/floating-element-causes-disappearing-phantom-background-image-css-in-ie7-ie6/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 04:00:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ferolen.com/blog/?p=91</guid>
		<description><![CDATA[When you set background image in a div, and have a floating element on top of the background image, it will cause the image to flicker, disappear, or missing some part of the image. This happens when you scroll the page up and down and occur in IE prior version 8 (mainly I experienced it in IE7 and IE6).]]></description>
		<wfw:commentRss>http://www.ferolen.com/blog/floating-element-causes-disappearing-phantom-background-image-css-in-ie7-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check for User Role in Microsoft Dynamic CRM 4.0 in Form Script</title>
		<link>http://www.ferolen.com/blog/how-to-check-for-user-role-in-microsoft-dynamic-4-0-form-script/</link>
		<comments>http://www.ferolen.com/blog/how-to-check-for-user-role-in-microsoft-dynamic-4-0-form-script/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 06:49:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ferolen.com/blog/?p=75</guid>
		<description><![CDATA[By using Microsoft Dynamic 4.0 form script capabilities, you can easily get the current user role. This ability will help you to create custom javascript to provide another level of user interaction. The script below will give you an example to grab all the roles assigned to the current CRM user. First of all to [...]]]></description>
		<wfw:commentRss>http://www.ferolen.com/blog/how-to-check-for-user-role-in-microsoft-dynamic-4-0-form-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting http Proxy for Java Application</title>
		<link>http://www.ferolen.com/blog/setting-http-proxy-for-java-application/</link>
		<comments>http://www.ferolen.com/blog/setting-http-proxy-for-java-application/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 11:17:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ferolen.com/blog/?p=51</guid>
		<description><![CDATA[There are 2 main ways to set/configure http proxy in your java application. As a command line option when invoking the VM Using the System.setProperty(String, String) in your code There are 3 properties you can set to specify the proxy that will be used by the http protocol handler: http.proxyHost: the host name of the [...]]]></description>
		<wfw:commentRss>http://www.ferolen.com/blog/setting-http-proxy-for-java-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

