<?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>Blog de Jose Cuéllar &#187; JS/AJAX</title>
	<atom:link href="http://www.josecuellar.net/category/js-ajax/feed" rel="self" type="application/rss+xml" />
	<link>http://www.josecuellar.net</link>
	<description>&#34;El análisis, diseño y desarrollo web de una mente inquieta, ordenada y reflexiva&#34;</description>
	<lastBuildDate>Sat, 12 May 2012 14:45:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Saltando de ASP.net WebForms a MVC 3</title>
		<link>http://www.josecuellar.net/js-ajax/saltando-de-asp-net-webforms-a-mvc-3/</link>
		<comments>http://www.josecuellar.net/js-ajax/saltando-de-asp-net-webforms-a-mvc-3/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 16:05:29 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Arquitectura]]></category>
		<category><![CDATA[JS/AJAX]]></category>
		<category><![CDATA[Microsoft .NET]]></category>
		<category><![CDATA[.NET FrameWork 4.0]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[OutputCache]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[webforms]]></category>

		<guid isPermaLink="false">http://www.josecuellar.net/?p=427</guid>
		<description><![CDATA[Actualmente y desde hace tiempo, existe un debate comparativo importante con metodologías y patrones a emplear con tecnologías ASP .net. Específicamente con ASP.net WebForms y MVC. Tras la aparición de MVC surgió la duda en la comunidad de programadores Microsoft: ¿MVC reemplazará WebForms?. Microsoft aclaró que únicamente iba a representar una opción más para el [...]]]></description>
		<wfw:commentRss>http://www.josecuellar.net/js-ajax/saltando-de-asp-net-webforms-a-mvc-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cargar banners asíncronamente</title>
		<link>http://www.josecuellar.net/js-ajax/cargar-banners-asincronamente/</link>
		<comments>http://www.josecuellar.net/js-ajax/cargar-banners-asincronamente/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 10:03:44 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[JS/AJAX]]></category>
		<category><![CDATA[Microsoft .NET]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MS AJAX]]></category>
		<category><![CDATA[Optimización]]></category>
		<category><![CDATA[Refactoring]]></category>
		<category><![CDATA[Rendimiento]]></category>

		<guid isPermaLink="false">http://www.josecuellar.net/?p=402</guid>
		<description><![CDATA[La inclusión de banners en un portal resulta una tarea extremadamente sencilla: Copiamos y pegamos el código externo de JavaScript y listo. Dicho código se ejecuta varias veces por cada banner que se desee mostrar. En muy pocas ocasiones se plantean las posibles consecuencias que pueda tener el código en la ejecución y rendimiento. Os [...]]]></description>
		<wfw:commentRss>http://www.josecuellar.net/js-ajax/cargar-banners-asincronamente/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modos de validación con ASP.net 4.0 frente a las peticiones potencialmente peligrosas al servidor.</title>
		<link>http://www.josecuellar.net/js-ajax/modos-de-validacion-con-asp-net-4-0-frente-a-las-peticiones-potencialmente-peligrosas-al-servidor/</link>
		<comments>http://www.josecuellar.net/js-ajax/modos-de-validacion-con-asp-net-4-0-frente-a-las-peticiones-potencialmente-peligrosas-al-servidor/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 21:04:58 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[JS/AJAX]]></category>
		<category><![CDATA[Microsoft .NET]]></category>
		<category><![CDATA[.NET FrameWork 4.0]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.josecuellar.net/?p=255</guid>
		<description><![CDATA[<a href="http://www.josecuellar.net/tag/asp-net/" target="_blank">ASP.net</a> dispone de funcionalidades de seguridad. Una de ellas valida las peticiones entrantes para evitar accesos/peticiones indeseados/as.

Podemos habilitar o deshabilitar dicha seguridad en el servidor mediante la propiedad <a href="http://msdn.microsoft.com/es-es/library/system.web.configuration.pagessection.validaterequest.aspx" target="_blank">validateRequest</a> en la directiva <a href="http://msdn.microsoft.com/es-es/library/ydy4x04a(v=VS.80).aspx" target="_blank">@Page</a> de cada página. 
]]></description>
		<wfw:commentRss>http://www.josecuellar.net/js-ajax/modos-de-validacion-con-asp-net-4-0-frente-a-las-peticiones-potencialmente-peligrosas-al-servidor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cuando y porqué realizar tareas de Refactoring.</title>
		<link>http://www.josecuellar.net/js-ajax/cuando-y-porque-realizar-tareas-de-refactoring/</link>
		<comments>http://www.josecuellar.net/js-ajax/cuando-y-porque-realizar-tareas-de-refactoring/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 00:16:40 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Arquitectura]]></category>
		<category><![CDATA[JS/AJAX]]></category>
		<category><![CDATA[Microsoft .NET]]></category>
		<category><![CDATA[.NET FrameWork 4.0]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[AjaxControlToolkit]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MS AJAX]]></category>
		<category><![CDATA[Optimización]]></category>
		<category><![CDATA[Refactoring]]></category>
		<category><![CDATA[Rendimiento]]></category>
		<category><![CDATA[Search Engine Optimization (SEO)]]></category>

		<guid isPermaLink="false">http://www.josecuellar.net/?p=204</guid>
		<description><![CDATA[La refactorización (del inglés refactoring) es una técnica de la ingeniería de software para reestructurar un código fuente, alterando su estructura interna sin cambiar su comportamiento externo. En el mantenimiento de código, una de las tareas más comunes para mejorar la adaptación, el cambio continuo de requerimientos, nuevas funcionalidades y mejoras en el rendimiento de [...]]]></description>
		<wfw:commentRss>http://www.josecuellar.net/js-ajax/cuando-y-porque-realizar-tareas-de-refactoring/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ASP .net 4.0 nos facilita la optimización de JS/AJAX mediante jQuery y MS AJAX Content Delivery Network.</title>
		<link>http://www.josecuellar.net/js-ajax/asp-net-4-0-nos-facilita-la-optimizacion-de-jsajax-mediante-jquery-y-ms-ajax-content-delivery-network/</link>
		<comments>http://www.josecuellar.net/js-ajax/asp-net-4-0-nos-facilita-la-optimizacion-de-jsajax-mediante-jquery-y-ms-ajax-content-delivery-network/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:32:40 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[JS/AJAX]]></category>
		<category><![CDATA[Microsoft .NET]]></category>
		<category><![CDATA[.NET FrameWork 4.0]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[AjaxControlToolkit]]></category>
		<category><![CDATA[ASP .NET]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MS AJAX]]></category>
		<category><![CDATA[Optimización]]></category>
		<category><![CDATA[Rendimiento]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.josecuellar.net/?p=169</guid>
		<description><![CDATA[Recientemente Microsoft ha publicado un servidor específico para alojar y brindar librerías comunes y más populares JavaScript a los desarrolladores que quieran incluirlas en sus proyectos web, denominado: MS AJAX Content Delivery Network (CDN). MS AJAX CDN te permitirá añadir referencias a librerías de JavaScript apuntando al servidor de Microsoft Ajax.microsoft.com. Mediante la referencia a [...]]]></description>
		<wfw:commentRss>http://www.josecuellar.net/js-ajax/asp-net-4-0-nos-facilita-la-optimizacion-de-jsajax-mediante-jquery-y-ms-ajax-content-delivery-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

