<?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>Farhan Alam - ASP .Net Application Developer In Singapore</title>
	<atom:link href="http://www.farhanjee.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.farhanjee.com</link>
	<description></description>
	<lastBuildDate>Mon, 08 Oct 2012 13:13:08 +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>DotnetNuke 6 CSS Presedence</title>
		<link>http://www.farhanjee.com/archives/176</link>
		<comments>http://www.farhanjee.com/archives/176#comments</comments>
		<pubDate>Mon, 08 Oct 2012 13:13:08 +0000</pubDate>
		<dc:creator>Farhan Alam</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[DotnetNuke 6]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.farhanjee.com/?p=176</guid>
		<description><![CDATA[In dotnetnuke there are the variety of cascade style sheets that apply to platform. following are the list of most common cascade style sheets that have been loaded on Dotnetnuke sites and pages. Default.css ( /portals/_default/default.css ) Module.css (/desktopmodules/[modules]/module.css ) Skin.css ( /portals/[PortalID]/skins/[skin]/skin.css ) SkinFileName.css (/portals/[PortalID]/Skins/[skin]/skinfilename.css ) Container.css ( /portals/[PortalID]/containers/[container]/container.css ) ContainerFileName.css ( /portals/[portalID]/containers/[container]/containerfilename.css ) Portal.css ( /portals/ [portal] / &#8230; <a href="http://www.farhanjee.com/archives/176">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.farhanjee.com/archives/176/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript QueryString</title>
		<link>http://www.farhanjee.com/archives/165</link>
		<comments>http://www.farhanjee.com/archives/165#comments</comments>
		<pubDate>Thu, 10 May 2012 09:34:42 +0000</pubDate>
		<dc:creator>Farhan Alam</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.farhanjee.com/?p=165</guid>
		<description><![CDATA[Javascript doesn&#8217;t have built in function or method to handle query string parameters. The other way is to use the location.search Which will give you from ? character on the end of the fragment identifier, whichever cam first. We have to use third party or our own code to read the query string and access the bit that we want.  I &#8230; <a href="http://www.farhanjee.com/archives/165">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.farhanjee.com/archives/165/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Murphy’s Laws For Programmers</title>
		<link>http://www.farhanjee.com/archives/147</link>
		<comments>http://www.farhanjee.com/archives/147#comments</comments>
		<pubDate>Mon, 20 Feb 2012 04:44:58 +0000</pubDate>
		<dc:creator>Farhan Alam</dc:creator>
				<category><![CDATA[Fun Programmers]]></category>

		<guid isPermaLink="false">http://www.farhanjee.com/?p=147</guid>
		<description><![CDATA[Anytime things appear to be going well, you have overlooked something. If it looks easy, it’s tough. If it looks tough, it’s damn near impossible. You always find any bug in the last place you look. Anything can be made to work if you fiddle with it long enough.  If you do not understand a particular word in a piece &#8230; <a href="http://www.farhanjee.com/archives/147">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.farhanjee.com/archives/147/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Record count of all tables in sql server</title>
		<link>http://www.farhanjee.com/archives/137</link>
		<comments>http://www.farhanjee.com/archives/137#comments</comments>
		<pubDate>Wed, 28 Dec 2011 15:56:39 +0000</pubDate>
		<dc:creator>Farhan Alam</dc:creator>
				<category><![CDATA[Data Access Class]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.farhanjee.com/?p=137</guid>
		<description><![CDATA[This query will take a second to get the rows count from all table. I feel must create a view of this query. &#160; SELECT &#8216;[' + SCHEMA_NAME(t.schema_id) + '].[' + t.name + ']&#8216; AS fulltable_name , SCHEMA_NAME(t.schema_id) AS schema_name , t.name AS tablename ,i.rows As DataCount FROM sys.tables AS t INNER JOIN sys.sysindexes AS i ON t.object_id = i.id &#8230; <a href="http://www.farhanjee.com/archives/137">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.farhanjee.com/archives/137/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Data Access Class</title>
		<link>http://www.farhanjee.com/archives/81</link>
		<comments>http://www.farhanjee.com/archives/81#comments</comments>
		<pubDate>Sun, 30 Oct 2011 16:13:18 +0000</pubDate>
		<dc:creator>Farhan Alam</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Data Access Class]]></category>

		<guid isPermaLink="false">http://www.farhanjee.com/?p=81</guid>
		<description><![CDATA[As a software developer our lives revolve around working with data. We create databases to store the data, code to retrieve and modify it. and input interfaces to collect and summarize it. Most of the database applications architecture compose of a Data Access Layer (DAL) using typed data-set, Buisness logic layer (BLL) that organizes custom business rules and Presentation layer &#8230; <a href="http://www.farhanjee.com/archives/81">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.farhanjee.com/archives/81/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Access Control List in .NET Framework</title>
		<link>http://www.farhanjee.com/archives/34</link>
		<comments>http://www.farhanjee.com/archives/34#comments</comments>
		<pubDate>Tue, 11 Oct 2011 12:26:49 +0000</pubDate>
		<dc:creator>Farhan Alam</dc:creator>
				<category><![CDATA[ASP.NET Security]]></category>

		<guid isPermaLink="false">http://www.farhanjee.com/?p=34</guid>
		<description><![CDATA[Once you complete developing a web application, you need to secure it. This is when the aspect of security comes into picture. There will be some portions of your application which need to be secured from users. Securing an application may need extra hardware to build complex multi-layer systems with firewalls, and also some highly secure features. Security enables you &#8230; <a href="http://www.farhanjee.com/archives/34">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.farhanjee.com/archives/34/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
