<?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>ForDevs &#187; admin</title>
	<atom:link href="http://www.fordevs.com/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Tue, 25 May 2010 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CASE Function in SQL Server 2005</title>
		<link>http://www.fordevs.com/2009/03/case-function-in-sql-server-2005.html</link>
		<comments>http://www.fordevs.com/2009/03/case-function-in-sql-server-2005.html#comments</comments>
		<pubDate>Sun, 29 Mar 2009 08:48:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sql Server]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/03/case-function-in-sql-server-2005.html</guid>
		<description><![CDATA[Sql Case Function : The CASE function allows you to evaluate a column value on a row against multiple criteria, where each criterion might return a different value CASE is just a searched (or lookup) expression &#8211; you cannot RETURN from inside it &#8211; it&#8217;s kind of like IF() in Excel Sql Case Function has [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/03/case-function-in-sql-server-2005.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to view source of a show modal dialog page</title>
		<link>http://www.fordevs.com/2009/03/how-to-view-source-of-show-modaldialog.html</link>
		<comments>http://www.fordevs.com/2009/03/how-to-view-source-of-show-modaldialog.html#comments</comments>
		<pubDate>Tue, 17 Mar 2009 04:36:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[show modal dialog]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/03/how-to-view-source-of-a-show-modal-dialog-page.html</guid>
		<description><![CDATA[We can view a page source normally from the menu view-&#62;source in mozilla or ie.But how would we view a page source of a showmodal page. we can achieve it by the following code. function viewSource&#40;&#41;  &#123; d=window.open&#40;&#41;; d.document.open&#40;'text/plain'&#41;.write&#40;document.documentElement.outerHTML&#41;; return false; &#125;]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/03/how-to-view-source-of-show-modaldialog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check different fonts by comparing for web designing</title>
		<link>http://www.fordevs.com/2009/02/check-different-fonts-by-comparing-for_24.html</link>
		<comments>http://www.fordevs.com/2009/02/check-different-fonts-by-comparing-for_24.html#comments</comments>
		<pubDate>Wed, 25 Feb 2009 10:43:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tips And Tricks]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/check-different-fonts-by-comparing-for-web-designing.html</guid>
		<description><![CDATA[While designing a website we would need to compare fonts which suits us.Typetester as made the work simple. Typetester is an online application for comparison of the fonts for the screen.we can compare three fonts at a time with different font style,font size,color etc.We can aslo get the css coding of the font setting given.]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/check-different-fonts-by-comparing-for_24.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to read XML using Javascript?</title>
		<link>http://www.fordevs.com/2009/02/how-to-read-xml-using-javascript.html</link>
		<comments>http://www.fordevs.com/2009/02/how-to-read-xml-using-javascript.html#comments</comments>
		<pubDate>Mon, 23 Feb 2009 15:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[read XML]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/how-to-read-xml-using-javascript.html</guid>
		<description><![CDATA[The Document Object Model (DOM) as implemented in MSXML provides a programmatic representation of XML documents, fragments, nodes, or node-sets. It also provides an application programming interface for working with XML data. The following JScript fragments outline the basic process of programming with XML DOM. var xmlDoc=new ActiveXObject&#40;&#34;Microsoft.XMLDOM&#34;&#41;; Example: function loadXML&#40;xmlFilePath&#41; &#123; try //Internet Explorer [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/how-to-read-xml-using-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy-Paste to and from clipboard using c#</title>
		<link>http://www.fordevs.com/2009/02/copy-paste-to-and-from-clipboard-using.html</link>
		<comments>http://www.fordevs.com/2009/02/copy-paste-to-and-from-clipboard-using.html#comments</comments>
		<pubDate>Wed, 18 Feb 2009 09:23:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[clipboard]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/copy-paste-to-and-from-clipboard-using-c.html</guid>
		<description><![CDATA[To make the operations such as copy paste using c#,we have to use the Clipboard Class which provides methods to place data on and retrieve data from the system Clipboard. Example :- Copy the text from txtCopy to clipboard System.Windows.Forms.Clipboard.SetDataObject&#40;txtCopy.Text, true&#41;; Paste the text from clipboard to txtPaste IDataObject clipData = Clipboard.GetDataObject&#40;&#41;; if &#40;clipData.GetDataPresent&#40;DataFormats.Text&#41;&#41; &#123; [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/copy-paste-to-and-from-clipboard-using.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Clients IP Address Using ASP.NET</title>
		<link>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html</link>
		<comments>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html#comments</comments>
		<pubDate>Wed, 18 Feb 2009 14:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ip address]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/get-clients-ip-address-using-aspnet.html</guid>
		<description><![CDATA[We can get the clients IP address using the Request object&#8217;s(The Request object retrieves the values that the client browser passed to the server during an HTTP request. ) property Request.ServerVariables Collection.Request.ServerVariables Collection gets the values of predetermined environment variables. &#8220;REMOTE_ADDR&#8221; gets the IP address of the remote host making the request.&#160; string ipaddr; ipaddr [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert Text to Image using c#</title>
		<link>http://www.fordevs.com/2009/02/convert-text-to-image-using-c.html</link>
		<comments>http://www.fordevs.com/2009/02/convert-text-to-image-using-c.html#comments</comments>
		<pubDate>Fri, 13 Feb 2009 16:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Text to Image]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/convert-text-to-image-using-c.html</guid>
		<description><![CDATA[We can Convert text to image in c# using System.Drawing namespace.Here we create a bitmap image and use its Graphics property to convert text passed to image and place the image in a picture box. private void TextToImage&#40;&#41; &#123; Color BackColor = Color.White; String FontName = &#34;Times New Roman&#34;; int FontSize = 25; int Height [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/convert-text-to-image-using-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaBeans</title>
		<link>http://www.fordevs.com/2009/02/javabeans.html</link>
		<comments>http://www.fordevs.com/2009/02/javabeans.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 15:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/javabeans.html</guid>
		<description><![CDATA[Requirements for JavaBeans: there have to be set/get methods specified has to have public default constructor (without parameters) it should be in a package serializable get/set methods has to have the same data type! bean cannot modify content of a page! &#8230; in general, JavaBean is a standard Class. It can be used as a [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/javabeans.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search a website or blog without search box</title>
		<link>http://www.fordevs.com/2009/01/search-website-or-blog-without-search_29.html</link>
		<comments>http://www.fordevs.com/2009/01/search-website-or-blog-without-search_29.html#comments</comments>
		<pubDate>Thu, 29 Jan 2009 16:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tips And Tricks]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/01/search-a-website-or-blog-without-search-box.html</guid>
		<description><![CDATA[I was looking for a tool to search a blog since it did not have a search box.So i Searched google but did&#8217;nt find any but surprisingly while searching icame across a article in yourshortestpath which gave the answer and wasvery simple. Use Google To Search A Website or Blog Without A Search Box. Steps [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/01/search-website-or-blog-without-search_29.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>setInterval Method in Javascript</title>
		<link>http://www.fordevs.com/2009/01/setinterval-method-in-javascript.html</link>
		<comments>http://www.fordevs.com/2009/01/setinterval-method-in-javascript.html#comments</comments>
		<pubDate>Mon, 19 Jan 2009 16:39:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[setInterval]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/01/setinterval-method-in-javascript.html</guid>
		<description><![CDATA[The setInterval() method evaluates a function or an expression repeatedly for the specified number of milliseconds and it returns an interval reference. Syntax: variable = setInterval&#40;expression, milliseconds&#41; or variable = setInterval&#40;function, milliseconds&#41; variable holds the interval reference returned by seInterval method. Example: Below example display the current time information using setInterval method call the date [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/01/setinterval-method-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
