<?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>Webwizo&#039;s Blog</title>
	<atom:link href="http://blog.webwizo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.webwizo.com</link>
	<description>The web wizard knows it all..!</description>
	<lastBuildDate>Sat, 26 Nov 2011 18:55:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Read and Write cookie with HttpCookie in ASP.NET</title>
		<link>http://blog.webwizo.com/2011/11/26/read-and-write-cookie-with-httpcookie-in-asp-net/</link>
		<comments>http://blog.webwizo.com/2011/11/26/read-and-write-cookie-with-httpcookie-in-asp-net/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 18:55:22 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=347</guid>
		<description><![CDATA[A very basic method of creating Cookie in ASP.NET with using HttpCookie. You can read briefly about Cookies at http://msdn.microsoft.com/en-us/library/aa289495(v=vs.71).aspx. I am creating a HTML Page with 3 Buttons to read, write and remove cookie. HTML Page &#60; %@ Page Language=&#34;C#&#34; AutoEventWireup=&#34;true&#34; CodeFile=&#34;Default.aspx.cs&#34; Inherits=&#34;read_write_httpcookie_Default&#34; %&#62; &#60; !DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62; &#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62; [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/10/27/how-to-delete-all-files-from-a-particular-folder-using-asp-net/' rel='bookmark' title='How to: Delete all files from a particular folder using ASP.NET'>How to: Delete all files from a particular folder using ASP.NET</a></li>
<li><a href='http://blog.webwizo.com/2011/05/20/set-up-virtual-hosts-with-xampp-for-windows-users/' rel='bookmark' title='Set up Virtual Hosts with XAMPP for Windows Users'>Set up Virtual Hosts with XAMPP for Windows Users</a></li>
<li><a href='http://blog.webwizo.com/2011/05/14/how-to-create-snippet-in-dreamweaver-cs5/' rel='bookmark' title='How to: Create snippet in Dreamweaver CS5'>How to: Create snippet in Dreamweaver CS5</a></li>
<li><a href='http://blog.webwizo.com/2011/09/03/how-to-verify-a-tel-domain-in-google-webmaster-tools/' rel='bookmark' title='How to: Verify a .TEL Domain in Google Webmaster Tools?'>How to: Verify a .TEL Domain in Google Webmaster Tools?</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/11/26/read-and-write-cookie-with-httpcookie-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/11/aspnet-cookie-httpcookie-200x200.jpg</enclosure>	</item>
		<item>
		<title>How to: Delete all files from a particular folder using ASP.NET</title>
		<link>http://blog.webwizo.com/2011/10/27/how-to-delete-all-files-from-a-particular-folder-using-asp-net/</link>
		<comments>http://blog.webwizo.com/2011/10/27/how-to-delete-all-files-from-a-particular-folder-using-asp-net/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 07:14:47 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=326</guid>
		<description><![CDATA[Delete all files method is being used when you store uploaded temporary files in specific folder and want to remove all now. Here I am showing very easy and little method which will definitely help you out. Delete All Files Method &#8211; C# public void DeleteAllTempFiles() { foreach (var f in System.IO.Directory.GetFiles(Server.MapPath(&#34;~/temp&#34;))) System.IO.File.Delete(f); } Delete [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2010/07/08/cropping-image-using-jquery-jcrop-with-aspjpeg-in-asp-net/' rel='bookmark' title='Cropping image using jQuery, Jcrop with AspJpeg in ASP.NET'>Cropping image using jQuery, Jcrop with AspJpeg in ASP.NET</a></li>
<li><a href='http://blog.webwizo.com/2010/06/05/creating-data-access-layer-aspnet-csharp-part-1/' rel='bookmark' title='Creating a Data Access Layer (DAL) for ASP.NET and C# Part-1'>Creating a Data Access Layer (DAL) for ASP.NET and C# Part-1</a></li>
<li><a href='http://blog.webwizo.com/2010/06/07/creating-data-access-layer-aspnet-csharp-part-2/' rel='bookmark' title='Creating a Data Access Layer (DAL) for ASP.NET and C# Part-2'>Creating a Data Access Layer (DAL) for ASP.NET and C# Part-2</a></li>
<li><a href='http://blog.webwizo.com/2010/06/08/creating-data-access-layer-aspnet-csharp-part-3/' rel='bookmark' title='Creating a Data Access Layer (DAL) for ASP.NET and C# Part-3'>Creating a Data Access Layer (DAL) for ASP.NET and C# Part-3</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/10/27/how-to-delete-all-files-from-a-particular-folder-using-asp-net/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/10/delete_all_files_aspnet-200x200.jpg</enclosure>	</item>
		<item>
		<title>Create SEO Friendly URL in ASP.NET</title>
		<link>http://blog.webwizo.com/2011/09/15/create-seo-friendly-url-in-asp-net/</link>
		<comments>http://blog.webwizo.com/2011/09/15/create-seo-friendly-url-in-asp-net/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 10:52:40 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=321</guid>
		<description><![CDATA[Here is another version of SEO Friendly URL creation, I had posted already when I used to work in ASP Classic. Lets review short and simple method to create SEO Friendly URL in ASP.NET. C# Method/Function public string createSEOTitle(string m_strText) { //m_strURL = m_strURL.Replace(&#34;&#38;&#34;, &#34;and&#34;); m_strText = Regex.Replace(m_strText, @&#34;[^\w]&#34;, &#34;-&#34;); do { m_strText = m_strText.Replace(&#34;--&#34;, [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2010/06/07/creating-data-access-layer-aspnet-csharp-part-2/' rel='bookmark' title='Creating a Data Access Layer (DAL) for ASP.NET and C# Part-2'>Creating a Data Access Layer (DAL) for ASP.NET and C# Part-2</a></li>
<li><a href='http://blog.webwizo.com/2010/07/08/cropping-image-using-jquery-jcrop-with-aspjpeg-in-asp-net/' rel='bookmark' title='Cropping image using jQuery, Jcrop with AspJpeg in ASP.NET'>Cropping image using jQuery, Jcrop with AspJpeg in ASP.NET</a></li>
<li><a href='http://blog.webwizo.com/2010/06/05/creating-data-access-layer-aspnet-csharp-part-1/' rel='bookmark' title='Creating a Data Access Layer (DAL) for ASP.NET and C# Part-1'>Creating a Data Access Layer (DAL) for ASP.NET and C# Part-1</a></li>
<li><a href='http://blog.webwizo.com/2010/06/08/creating-data-access-layer-aspnet-csharp-part-3/' rel='bookmark' title='Creating a Data Access Layer (DAL) for ASP.NET and C# Part-3'>Creating a Data Access Layer (DAL) for ASP.NET and C# Part-3</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/09/15/create-seo-friendly-url-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Insert multiple uploaded files entry into database in PHP using Uploadify!</title>
		<link>http://blog.webwizo.com/2011/09/10/insert-multiple-uploaded-files-entry-into-database-in-php-using-uploadify/</link>
		<comments>http://blog.webwizo.com/2011/09/10/insert-multiple-uploaded-files-entry-into-database-in-php-using-uploadify/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 04:51:26 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=316</guid>
		<description><![CDATA[Hello again! In the 2nd last tutorial I wrote about Upload Multiple Files in PHP with using Uploadify but as per viewers request I am going to tell you how to add uploaded file record into mysql database in PHP with using Uploadify. Beginning with the MySQL Table Structure: CREATE TABLE `uploadify` ( `id` int(10) [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/06/22/upload-multiple-files-in-php-with-uploadify/' rel='bookmark' title='Upload multiple files in PHP with Uploadify!'>Upload multiple files in PHP with Uploadify!</a></li>
<li><a href='http://blog.webwizo.com/2011/05/04/simple-login-with-php-and-jquery-ajax/' rel='bookmark' title='Simple login with PHP and jQuery AJAX'>Simple login with PHP and jQuery AJAX</a></li>
<li><a href='http://blog.webwizo.com/2011/06/03/check-username-availability-in-php-with-jquery-ajax/' rel='bookmark' title='Check username availability in PHP with jQuery AJAX'>Check username availability in PHP with jQuery AJAX</a></li>
<li><a href='http://blog.webwizo.com/2011/05/11/easiest-way-to-check-uncheck-all-checkboxes-in-jquery/' rel='bookmark' title='Easiest way to check/uncheck all checkboxes in jQuery'>Easiest way to check/uncheck all checkboxes in jQuery</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/09/10/insert-multiple-uploaded-files-entry-into-database-in-php-using-uploadify/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>How to: Verify a .TEL Domain in Google Webmaster Tools?</title>
		<link>http://blog.webwizo.com/2011/09/03/how-to-verify-a-tel-domain-in-google-webmaster-tools/</link>
		<comments>http://blog.webwizo.com/2011/09/03/how-to-verify-a-tel-domain-in-google-webmaster-tools/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 22:47:02 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=303</guid>
		<description><![CDATA[When I bought a domain http://webwizo.tel/ I had been trying to verify my domain ownership into Google Webmaster Tools since couple of days. But, suddenly I have found an article about verification process and I intend to share with you guys. Before buy this domain I saw a TV Commercial regarding how .TEL domain can [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/05/16/starting-with-the-facebook-application-development-process-part-1/' rel='bookmark' title='Starting with the facebook application development process Part-1'>Starting with the facebook application development process Part-1</a></li>
<li><a href='http://blog.webwizo.com/2011/05/20/set-up-virtual-hosts-with-xampp-for-windows-users/' rel='bookmark' title='Set up Virtual Hosts with XAMPP for Windows Users'>Set up Virtual Hosts with XAMPP for Windows Users</a></li>
<li><a href='http://blog.webwizo.com/2011/11/26/read-and-write-cookie-with-httpcookie-in-asp-net/' rel='bookmark' title='Read and Write cookie with HttpCookie in ASP.NET'>Read and Write cookie with HttpCookie in ASP.NET</a></li>
<li><a href='http://blog.webwizo.com/2011/05/14/how-to-create-snippet-in-dreamweaver-cs5/' rel='bookmark' title='How to: Create snippet in Dreamweaver CS5'>How to: Create snippet in Dreamweaver CS5</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/09/03/how-to-verify-a-tel-domain-in-google-webmaster-tools/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/09/9-3-2011-3-37-21-AM.jpg</enclosure>	</item>
		<item>
		<title>Upload multiple files in PHP with Uploadify!</title>
		<link>http://blog.webwizo.com/2011/06/22/upload-multiple-files-in-php-with-uploadify/</link>
		<comments>http://blog.webwizo.com/2011/06/22/upload-multiple-files-in-php-with-uploadify/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 06:54:58 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=280</guid>
		<description><![CDATA[Uploadify is a jQuery plugin that integrates a fully-customizable multiple file upload utility on your website. It uses a mixture of Javascript, ActionScript, and any server-side language to dynamically create an instance over any DOM element on a page.
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/09/10/insert-multiple-uploaded-files-entry-into-database-in-php-using-uploadify/' rel='bookmark' title='Insert multiple uploaded files entry into database in PHP using Uploadify!'>Insert multiple uploaded files entry into database in PHP using Uploadify!</a></li>
<li><a href='http://blog.webwizo.com/2011/05/11/easiest-way-to-check-uncheck-all-checkboxes-in-jquery/' rel='bookmark' title='Easiest way to check/uncheck all checkboxes in jQuery'>Easiest way to check/uncheck all checkboxes in jQuery</a></li>
<li><a href='http://blog.webwizo.com/2011/05/04/simple-login-with-php-and-jquery-ajax/' rel='bookmark' title='Simple login with PHP and jQuery AJAX'>Simple login with PHP and jQuery AJAX</a></li>
<li><a href='http://blog.webwizo.com/2011/06/03/check-username-availability-in-php-with-jquery-ajax/' rel='bookmark' title='Check username availability in PHP with jQuery AJAX'>Check username availability in PHP with jQuery AJAX</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/06/22/upload-multiple-files-in-php-with-uploadify/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/06/6-22-2011-11-21-24-AM.jpg</enclosure>	</item>
		<item>
		<title>Check username availability in PHP with jQuery AJAX</title>
		<link>http://blog.webwizo.com/2011/06/03/check-username-availability-in-php-with-jquery-ajax/</link>
		<comments>http://blog.webwizo.com/2011/06/03/check-username-availability-in-php-with-jquery-ajax/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 07:05:55 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=273</guid>
		<description><![CDATA[This is a small post for using jQuery AJAX method in PHP to check username availability, I am trying to clear your basic skill to use jQuery AJAX which is being very easy to use everywhere at the present time, while I know there is a lot of articles which had already discussed this topic. [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/05/04/simple-login-with-php-and-jquery-ajax/' rel='bookmark' title='Simple login with PHP and jQuery AJAX'>Simple login with PHP and jQuery AJAX</a></li>
<li><a href='http://blog.webwizo.com/2011/05/11/easiest-way-to-check-uncheck-all-checkboxes-in-jquery/' rel='bookmark' title='Easiest way to check/uncheck all checkboxes in jQuery'>Easiest way to check/uncheck all checkboxes in jQuery</a></li>
<li><a href='http://blog.webwizo.com/2011/06/22/upload-multiple-files-in-php-with-uploadify/' rel='bookmark' title='Upload multiple files in PHP with Uploadify!'>Upload multiple files in PHP with Uploadify!</a></li>
<li><a href='http://blog.webwizo.com/2011/09/10/insert-multiple-uploaded-files-entry-into-database-in-php-using-uploadify/' rel='bookmark' title='Insert multiple uploaded files entry into database in PHP using Uploadify!'>Insert multiple uploaded files entry into database in PHP using Uploadify!</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/06/03/check-username-availability-in-php-with-jquery-ajax/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/06/6-3-2011-12-03-05-PM-200x200.jpg</enclosure>	</item>
		<item>
		<title>How to: Change apache friends XAMPP Port on Windows</title>
		<link>http://blog.webwizo.com/2011/05/23/how-to-change-apache-friends-xampp-port-on-windows/</link>
		<comments>http://blog.webwizo.com/2011/05/23/how-to-change-apache-friends-xampp-port-on-windows/#comments</comments>
		<pubDate>Mon, 23 May 2011 12:17:59 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=264</guid>
		<description><![CDATA[Sometimes we have to use IIS and XAMPP at same time in the running operating system. In the technical speaking IIS and Apache run at the same default port &#8220;80&#8243;. Therefore, we have to change default port either IIS or XAMPP, it depends on you. Jokes a part I never change any Microsoft defaults, nobody [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/05/20/set-up-virtual-hosts-with-xampp-for-windows-users/' rel='bookmark' title='Set up Virtual Hosts with XAMPP for Windows Users'>Set up Virtual Hosts with XAMPP for Windows Users</a></li>
<li><a href='http://blog.webwizo.com/2011/09/03/how-to-verify-a-tel-domain-in-google-webmaster-tools/' rel='bookmark' title='How to: Verify a .TEL Domain in Google Webmaster Tools?'>How to: Verify a .TEL Domain in Google Webmaster Tools?</a></li>
<li><a href='http://blog.webwizo.com/2011/11/26/read-and-write-cookie-with-httpcookie-in-asp-net/' rel='bookmark' title='Read and Write cookie with HttpCookie in ASP.NET'>Read and Write cookie with HttpCookie in ASP.NET</a></li>
<li><a href='http://blog.webwizo.com/2011/05/14/how-to-create-snippet-in-dreamweaver-cs5/' rel='bookmark' title='How to: Create snippet in Dreamweaver CS5'>How to: Create snippet in Dreamweaver CS5</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/05/23/how-to-change-apache-friends-xampp-port-on-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/05/5-23-2011-5-13-07-PM-200x200.jpg</enclosure>	</item>
		<item>
		<title>Set up Virtual Hosts with XAMPP for Windows Users</title>
		<link>http://blog.webwizo.com/2011/05/20/set-up-virtual-hosts-with-xampp-for-windows-users/</link>
		<comments>http://blog.webwizo.com/2011/05/20/set-up-virtual-hosts-with-xampp-for-windows-users/#comments</comments>
		<pubDate>Fri, 20 May 2011 14:51:34 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=251</guid>
		<description><![CDATA[XAMPP virtual hosts setup is quite easy. There are some reasons to use virtual hosts. Although, your XAMPP works fine if you don&#8217;t configure virtual hosts. To use custom domain / virtual hosts, you must designate the IP address or (Port, if available). Lets have a look why do we need to create virtual hosts [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/05/23/how-to-change-apache-friends-xampp-port-on-windows/' rel='bookmark' title='How to: Change apache friends XAMPP Port on Windows'>How to: Change apache friends XAMPP Port on Windows</a></li>
<li><a href='http://blog.webwizo.com/2011/09/03/how-to-verify-a-tel-domain-in-google-webmaster-tools/' rel='bookmark' title='How to: Verify a .TEL Domain in Google Webmaster Tools?'>How to: Verify a .TEL Domain in Google Webmaster Tools?</a></li>
<li><a href='http://blog.webwizo.com/2011/05/16/starting-with-the-facebook-application-development-process-part-1/' rel='bookmark' title='Starting with the facebook application development process Part-1'>Starting with the facebook application development process Part-1</a></li>
<li><a href='http://blog.webwizo.com/2011/05/14/how-to-create-snippet-in-dreamweaver-cs5/' rel='bookmark' title='How to: Create snippet in Dreamweaver CS5'>How to: Create snippet in Dreamweaver CS5</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/05/20/set-up-virtual-hosts-with-xampp-for-windows-users/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/05/5-20-2011-7-38-36-PM-200x200.jpg</enclosure>	</item>
		<item>
		<title>Starting with the facebook application development process Part-1</title>
		<link>http://blog.webwizo.com/2011/05/16/starting-with-the-facebook-application-development-process-part-1/</link>
		<comments>http://blog.webwizo.com/2011/05/16/starting-with-the-facebook-application-development-process-part-1/#comments</comments>
		<pubDate>Mon, 16 May 2011 13:01:46 +0000</pubDate>
		<dc:creator>Asif Iqbal</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Goodies]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.webwizo.com/?p=230</guid>
		<description><![CDATA[Lets start with the basic steps of Facebook Application Development. I will show you the complete process to develop a great Facebook app but there are some steps to register application at Facebook. Lets list some steps below to register first: Step #1 &#8211; Create Application: login your Facebook account and open this URL to [...]
Related posts:<ol>
<li><a href='http://blog.webwizo.com/2011/05/14/how-to-create-snippet-in-dreamweaver-cs5/' rel='bookmark' title='How to: Create snippet in Dreamweaver CS5'>How to: Create snippet in Dreamweaver CS5</a></li>
<li><a href='http://blog.webwizo.com/2011/05/20/set-up-virtual-hosts-with-xampp-for-windows-users/' rel='bookmark' title='Set up Virtual Hosts with XAMPP for Windows Users'>Set up Virtual Hosts with XAMPP for Windows Users</a></li>
<li><a href='http://blog.webwizo.com/2011/09/03/how-to-verify-a-tel-domain-in-google-webmaster-tools/' rel='bookmark' title='How to: Verify a .TEL Domain in Google Webmaster Tools?'>How to: Verify a .TEL Domain in Google Webmaster Tools?</a></li>
<li><a href='http://blog.webwizo.com/2011/05/23/how-to-change-apache-friends-xampp-port-on-windows/' rel='bookmark' title='How to: Change apache friends XAMPP Port on Windows'>How to: Change apache friends XAMPP Port on Windows</a></li>
</ol>]]></description>
		<wfw:commentRss>http://blog.webwizo.com/2011/05/16/starting-with-the-facebook-application-development-process-part-1/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	<enclosure>http://blog.webwizo.com/wp-content/uploads/2011/05/register_fbapp_step1-200x200.jpg</enclosure>	</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.572 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-17 15:12:12 -->
<!-- Compression = gzip -->
