<?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/" >
	<channel>
	    <title><![CDATA[Web development]]></title>
	    <link>http://www.arzion.com/</link>
	    <language>en</language>
	    <description><![CDATA[Beauty, ugly, accesible? This is the state-of-the-art web-design and programming blog. Stay tunned!]]></description>	    
	    <generator>Arzion</generator><item>
			    	<title>Popups with FancyBox</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Popups-with-FancyBox]]></link>
					<pubDate>28 Oct 2009 15:30:41 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Popups-with-FancyBox</comments>
					<content:encoded><![CDATA[<p>Hello... today I'm gonna teach you how to show a popup with FancyBox.

FancyBox is a tool to show images, html content and multimedia content in a window LightBox like

It was developed using the jQuery library.

Let's go to the example!

First of all, we should add to the page that is going to contain our b</p>]]></content:encoded>
					<description><![CDATA[<p>Hello... today I'm gonna teach you how to show a popup with FancyBox.

FancyBox is a tool to show images, html content and multimedia content in a window LightBox like

It was developed using the jQuery library.

Let's go to the example!

First of all, we should add to the page that is going to contain our b</p>]]></description>
				</item>
				<item>
			    	<title>Export a GridView to Word format with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Word-format-with-ASPnet]]></link>
					<pubDate>8 Jul 2009 14:14:40 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Word-format-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>Following our series of Export to... this time is the turn of Word format. (.doc).
Still being really simple. We put the next code on the OnClick event of the button, and that's all!.

    Response.Clear();

    Response.Buffer = true;

    Response.AddHeader("content-disposition",

    "attachment;filename=GridViewExport.doc");

    Respons</p>]]></content:encoded>
					<description><![CDATA[<p>Following our series of Export to... this time is the turn of Word format. (.doc).
Still being really simple. We put the next code on the OnClick event of the button, and that's all!.

    Response.Clear();

    Response.Buffer = true;

    Response.AddHeader("content-disposition",

    "attachment;filename=GridViewExport.doc");

    Respons</p>]]></description>
				</item>
				<item>
			    	<title>Importance of Sitemaps</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Importance-of-Sitemaps]]></link>
					<pubDate>13 Jun 2009 22:11:54 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Importance-of-Sitemaps</comments>
					<content:encoded><![CDATA[<p>&nbsp;The sitemaps importance is today out of discussion, it's been more than 2 years since yahoo, microsoft and google jointly announced the sitemap submition in robots.txt, according to a study presented in the WWW 09 in madrid by Uri Schonfeld, sitemap files&nbsp;submission has almost tripled over the last year</p>]]></content:encoded>
					<description><![CDATA[<p>&nbsp;The sitemaps importance is today out of discussion, it's been more than 2 years since yahoo, microsoft and google jointly announced the sitemap submition in robots.txt, according to a study presented in the WWW 09 in madrid by Uri Schonfeld, sitemap files&nbsp;submission has almost tripled over the last year</p>]]></description>
				</item>
				<item>
			    	<title>Export a GridView to Excel format with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Excel-format-with-ASPnet]]></link>
					<pubDate>1 Jun 2009 16:09:17 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Excel-format-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>With the next code you will be able to export a GridView to Excel format (xls), it's very simple:

protected void btnExportExcel_Click(object sender, EventArgs e)
{
	Response.Clear();
	Response.Buffer = true;
	Response.AddHeader(&quot;content-disposition&quot;,
	&quot;attachment;filename=GridViewExport.xls&quot;);
	Response.Charset = &quot;&quot;;
	Respon</p>]]></content:encoded>
					<description><![CDATA[<p>With the next code you will be able to export a GridView to Excel format (xls), it's very simple:

protected void btnExportExcel_Click(object sender, EventArgs e)
{
	Response.Clear();
	Response.Buffer = true;
	Response.AddHeader(&quot;content-disposition&quot;,
	&quot;attachment;filename=GridViewExport.xls&quot;);
	Response.Charset = &quot;&quot;;
	Respon</p>]]></description>
				</item>
				<item>
			    	<title>Export a GridView to CSV with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-a-GridView-to-CSV-with-ASPnet]]></link>
					<pubDate>27 May 2009 15:08:58 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-a-GridView-to-CSV-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>This example is very easy to implement. We only need to put the next code in the desired button:



protected void btnExportCSV_Click(object sender, EventArgs e)
{
    Response.Clear();
    Response.Buffer = true;
    Response.AddHeader("content-disposition",
     "attachment;filename=GridViewExport.csv");
    Response.Charset = "";
    Resp</p>]]></content:encoded>
					<description><![CDATA[<p>This example is very easy to implement. We only need to put the next code in the desired button:



protected void btnExportCSV_Click(object sender, EventArgs e)
{
    Response.Clear();
    Response.Buffer = true;
    Response.AddHeader("content-disposition",
     "attachment;filename=GridViewExport.csv");
    Response.Charset = "";
    Resp</p>]]></description>
				</item>
				<item>
			    	<title>Automatic documentation for PHP part 2</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP-part-2]]></link>
					<pubDate>17 Apr 2009 01:29:31 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP-part-2</comments>
					<content:encoded><![CDATA[<p>This time, we are going to talk about the standard PHPDoc.

A PHPDoc documentation is a set of Doc Blocks. These blocks must be placed inmediately before each declaration that we want to comment. The blocks have the form:



/**
*short description
*long description
*tags (see below)
*/



Using packages
Fir</p>]]></content:encoded>
					<description><![CDATA[<p>This time, we are going to talk about the standard PHPDoc.

A PHPDoc documentation is a set of Doc Blocks. These blocks must be placed inmediately before each declaration that we want to comment. The blocks have the form:



/**
*short description
*long description
*tags (see below)
*/



Using packages
Fir</p>]]></description>
				</item>
				<item>
			    	<title>Working with ASP.net and the Flickr Api</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Working-with-ASPnet-and-the-Flickr-Api]]></link>
					<pubDate>23 Mar 2009 16:15:17 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Working-with-ASPnet-and-the-Flickr-Api</comments>
					<content:encoded><![CDATA[<p>Today, I'm going to teach you how to work with the Flickr API, more precisely with FlickrNet

First of all we'll need an API key to use the library. We can get the key in www.flickr.com/services/api/keys.

Once we have the key we proceed to download the library from FlickrNet website: </p>]]></content:encoded>
					<description><![CDATA[<p>Today, I'm going to teach you how to work with the Flickr API, more precisely with FlickrNet

First of all we'll need an API key to use the library. We can get the key in www.flickr.com/services/api/keys.

Once we have the key we proceed to download the library from FlickrNet website: </p>]]></description>
				</item>
				<item>
			    	<title>Automatic documentation for PHP</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP]]></link>
					<pubDate>23 Mar 2009 15:40:04 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP</comments>
					<content:encoded><![CDATA[<p>How many times we developed a class, and after an intensive test to ensure it works correctly, we are proud of our work and consider the task finished? A lot of times. But 5 minutes after, we say: &quot;oh no, I forgot the documentation!!&quot;.

</p>]]></content:encoded>
					<description><![CDATA[<p>How many times we developed a class, and after an intensive test to ensure it works correctly, we are proud of our work and consider the task finished? A lot of times. But 5 minutes after, we say: &quot;oh no, I forgot the documentation!!&quot;.

</p>]]></description>
				</item>
				<item>
			    	<title>Export to PDF with WinNovative WnvHtmlConvert</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-to-PDF-with-WinNovative-WnvHtmlConvert]]></link>
					<pubDate>4 Mar 2009 01:23:51 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-to-PDF-with-WinNovative-WnvHtmlConvert</comments>
					<content:encoded><![CDATA[<p>In this example, I'll teach you how to export an URL to a PDF document, using the WinNovative WnvHTMLConvert library. Sadly this library isn't free, but you can download the DLL wich has only one restriction and that is every time you export, it prints over the PDF a message saying you are using an evaluation version. The link to download the DLL is the next one: </p>]]></content:encoded>
					<description><![CDATA[<p>In this example, I'll teach you how to export an URL to a PDF document, using the WinNovative WnvHTMLConvert library. Sadly this library isn't free, but you can download the DLL wich has only one restriction and that is every time you export, it prints over the PDF a message saying you are using an evaluation version. The link to download the DLL is the next one: </p>]]></description>
				</item>
				<item>
			    	<title>List files from a FTP server</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/List-files-from-a-FTP-server]]></link>
					<pubDate>4 Mar 2009 00:42:16 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/List-files-from-a-FTP-server</comments>
					<content:encoded><![CDATA[<p>In this little example, I'll show you how to list files from a FTP server.
We need to import the following namespaces:
&nbsp;

&lt;%@ Import Namespace=&quot;System.Net&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.IO&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.Collections.Generic&quot; %&gt;
&nbsp;
Then, we add a Grid</p>]]></content:encoded>
					<description><![CDATA[<p>In this little example, I'll show you how to list files from a FTP server.
We need to import the following namespaces:
&nbsp;

&lt;%@ Import Namespace=&quot;System.Net&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.IO&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.Collections.Generic&quot; %&gt;
&nbsp;
Then, we add a Grid</p>]]></description>
				</item>
				<item>
			    	<title>Hide PHP extension with .htaccess</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Hide-PHP-extension-with-htaccess]]></link>
					<pubDate>1 Feb 2009 20:40:56 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Hide-PHP-extension-with-htaccess</comments>
					<content:encoded><![CDATA[<p>Hi, this time i'm going to teach you how to rewrite an URL using the .htaccess file.

Using this technique you will be able to &quot;hide&quot; every physical file extension such as product.php to be shown as product.html in the address bar of the browser but the actual file name remains product.php and you don&rsquo;t need to rename the file extension. Furthermore you can rewrite th</p>]]></content:encoded>
					<description><![CDATA[<p>Hi, this time i'm going to teach you how to rewrite an URL using the .htaccess file.

Using this technique you will be able to &quot;hide&quot; every physical file extension such as product.php to be shown as product.html in the address bar of the browser but the actual file name remains product.php and you don&rsquo;t need to rename the file extension. Furthermore you can rewrite th</p>]]></description>
				</item>
				<item>
			    	<title>Learn Jquery from scratch (day 1)</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Learn-Jquery-from-scratch--day-1-]]></link>
					<pubDate>30 Jan 2009 13:13:18 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Learn-Jquery-from-scratch--day-1-</comments>
					<content:encoded><![CDATA[<p>Javascript potential and its enhacement by web 2.0 revolution has made lot of js frameworks appear to allow us create the same scripts in a more easy and intuitive way.

Among all available frameworks, Jquery is my choice, for its simple syntax and as their slogan says &quot;Write less, do more&quot;.

But you'll want to know why you have to choose among all the other f</p>]]></content:encoded>
					<description><![CDATA[<p>Javascript potential and its enhacement by web 2.0 revolution has made lot of js frameworks appear to allow us create the same scripts in a more easy and intuitive way.

Among all available frameworks, Jquery is my choice, for its simple syntax and as their slogan says &quot;Write less, do more&quot;.

But you'll want to know why you have to choose among all the other f</p>]]></description>
				</item>
				<item>
			    	<title>Paging with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Paging-with-ASPnet]]></link>
					<pubDate>15 Jan 2009 23:33:00 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Paging-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>Many of the problems at the time of paginating results come at the moment when we mix our HTML design with the code to show the results. Default pagers, barely works for us, or if they do, not meet the things we want to do. So, I bring you an example of pagination that is easily adaptable to almost any idea that we have in mind.

First of all, let's start with the HTML code and the A</p>]]></content:encoded>
					<description><![CDATA[<p>Many of the problems at the time of paginating results come at the moment when we mix our HTML design with the code to show the results. Default pagers, barely works for us, or if they do, not meet the things we want to do. So, I bring you an example of pagination that is easily adaptable to almost any idea that we have in mind.

First of all, let's start with the HTML code and the A</p>]]></description>
				</item>
				<item>
			    	<title>15 Blogs that a web developer must read</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/15-Blogs-that-a-web-developer-must-read]]></link>
					<pubDate>15 Jan 2009 13:14:38 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/15-Blogs-that-a-web-developer-must-read</comments>
					<content:encoded><![CDATA[<p>In our job change its change its the only constant (and this could change too), and because of this keep us informed es an advantage.&nbsp; 

Here you have a list of the best blogs to add them to your google reader.

Javascript frameworks and ajax world
</p>]]></content:encoded>
					<description><![CDATA[<p>In our job change its change its the only constant (and this could change too), and because of this keep us informed es an advantage.&nbsp; 

Here you have a list of the best blogs to add them to your google reader.

Javascript frameworks and ajax world
</p>]]></description>
				</item>
				<item>
			    	<title>Using Curl to Post Data</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Using-Curl-to-Post-Data]]></link>
					<pubDate>2 Jan 2009 04:11:55 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Using-Curl-to-Post-Data</comments>
					<content:encoded><![CDATA[<p>Curl its a php library that alow us to comunicate between servers using diferent protocols such us http, https, ftp, gopher, telnet, dict, file and Idap.
It's very useful, for example we can create a web crawler or even upload files using FTP.
Something interesting that we can do with this library, is to simulate a user surf in a site.

In this case, we are going to use</p>]]></content:encoded>
					<description><![CDATA[<p>Curl its a php library that alow us to comunicate between servers using diferent protocols such us http, https, ftp, gopher, telnet, dict, file and Idap.
It's very useful, for example we can create a web crawler or even upload files using FTP.
Something interesting that we can do with this library, is to simulate a user surf in a site.

In this case, we are going to use</p>]]></description>
				</item>
				<item>
			    	<title>Search engine visibility (Part I)</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Search-engine-visibility--Part-I-]]></link>
					<pubDate>29 Sep 2008 04:31:09 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Search-engine-visibility--Part-I-</comments>
					<content:encoded><![CDATA[<p>In the last weekend, I began read a book about SEO called &quot;Search Engine Visibility&quot; writed by Shari Thurow. I will try to transcript in this post some ideas from the first chapters which I found very interesting.

To get the best overall, long-term search engine visibility, three components must be present on a web page:

    </p>]]></content:encoded>
					<description><![CDATA[<p>In the last weekend, I began read a book about SEO called &quot;Search Engine Visibility&quot; writed by Shari Thurow. I will try to transcript in this post some ideas from the first chapters which I found very interesting.

To get the best overall, long-term search engine visibility, three components must be present on a web page:

    </p>]]></description>
				</item>
				<item>
			    	<title>Design Patterns for PHP</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Design-Patterns-for-PHP]]></link>
					<pubDate>19 Sep 2008 02:04:19 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Design-Patterns-for-PHP</comments>
					<content:encoded><![CDATA[<p>The design patterns are software solutions that have been developed and refined over time. Therefore, this is not the designs that people tend to generate when it initially starts to develop an application or a project, but reflect the entire redesign and recoding that developers have done as they struggled to achieve greater reuse and flexibility in their software.
Reuse and flexibility ar</p>]]></content:encoded>
					<description><![CDATA[<p>The design patterns are software solutions that have been developed and refined over time. Therefore, this is not the designs that people tend to generate when it initially starts to develop an application or a project, but reflect the entire redesign and recoding that developers have done as they struggled to achieve greater reuse and flexibility in their software.
Reuse and flexibility ar</p>]]></description>
				</item>
				<item>
			    	<title>Google cuts data retention time in half</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Google-cuts-data-retention-time-in-half]]></link>
					<pubDate>9 Sep 2008 22:12:47 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Google-cuts-data-retention-time-in-half</comments>
					<content:encoded><![CDATA[<p>
Under pressure from European regulators, Google is halving the amount of time its stores Internet Protocol addresses.
In a blog post, Google said it would keep IP addresses on its server logs for 9 months before anonymizing them, down from the 18 months it had previousl</p>]]></content:encoded>
					<description><![CDATA[<p>
Under pressure from European regulators, Google is halving the amount of time its stores Internet Protocol addresses.
In a blog post, Google said it would keep IP addresses on its server logs for 9 months before anonymizing them, down from the 18 months it had previousl</p>]]></description>
				</item>
				<item>
			    	<title>First steps with ASP.net MVC</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/First-steps-with-ASPnet-MVC]]></link>
					<pubDate>26 Aug 2008 03:39:53 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/First-steps-with-ASPnet-MVC</comments>
					<content:encoded><![CDATA[<p>MVC is a framework that divides the implementation of an application in three roles: models, views and controllers.

&nbsp;&nbsp;&nbsp; &bull; The &quot;models&quot; of an application based on MVC are the components responsible for maintaining the state. Suppose in this case, a database.
&nbsp;&nbsp;&nbsp;&bull; The &quot;views&quot; are the components responsible for displayi</p>]]></content:encoded>
					<description><![CDATA[<p>MVC is a framework that divides the implementation of an application in three roles: models, views and controllers.

&nbsp;&nbsp;&nbsp; &bull; The &quot;models&quot; of an application based on MVC are the components responsible for maintaining the state. Suppose in this case, a database.
&nbsp;&nbsp;&nbsp;&bull; The &quot;views&quot; are the components responsible for displayi</p>]]></description>
				</item>
				
		</channel>
	
</rss> 