<?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>Indalcasa English</title>
	<atom:link href="http://en.indalcasa.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://en.indalcasa.com</link>
	<description>A blog about development, c#, aspnet mvc, jquery</description>
	<lastBuildDate>Tue, 05 Jul 2011 14:30:14 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>Double.Parse and Decimal.Parse with pointing symbols</title>
		<link>http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/</link>
		<comments>http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 14:30:14 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Visual Basic .Net]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[dotnet]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[netframework]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[vbnet]]></category>
		<category><![CDATA[visualbasic]]></category>
		<category><![CDATA[visualstudio]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=215</guid>
		<description><![CDATA[One problem I encounter on dotnet equally in Visual Basic or C#, is when I have to parse a decimal or a double from a string. When parsing a double or a decimal, we find a mistake because in math, punctuation symbol for the decimal point, so to make a Double.Parse(number) or Decimal.Parse(number), which makes [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>One problem I encounter on <strong>dotnet</strong> equally in <strong>Visual Basic</strong> or <strong>C#</strong>, is when I have to <strong>parse a decimal or a double from a string</strong>. When <strong>parsing a double or a decimal</strong>, we find a mistake because in math, punctuation symbol for the decimal point, so to make a <strong>Double.Parse(number)</strong> or <strong>Decimal.Parse(number)</strong>, which makes is to ignore the point and therefore take the decimal part as if it were the whole. For this does not happen, we must indicate that the number system used is the mathematician, who does not vary with <strong>culture</strong>. An example.</p>
<p>[sourcecode language="csharp" title="C# example"]<br />
string number = &quot;15.3&quot;;<br />
double doNumber;<br />
decimal deNumber;</p>
<p>doNumber = double.Parse(number);<br />
deNumber = decimal.Parse(number);</p>
<p>/*<br />
Values:<br />
doNumber = 153<br />
deNumber = 153<br />
*/</p>
<p>doNumber = double.Parse(number, CultureInfo.InvariantCulture);<br />
deNumber = decimal.Parse(number, CultureInfo.InvariantCulture);</p>
<p>/*<br />
Values:<br />
doNumber = 15.3<br />
deNumber = 15.3<br />
*/<br />
[/sourcecode]</p>
<p>[sourcecode language="vb" title="VB.Net example"]<br />
Dim number As String = &quot;15.3&quot;;<br />
Dim doNumber As Double;<br />
Dim deNumber As Decimal;</p>
<p>doNumber = double.Parse(number);<br />
deNumber = decimal.Parse(number);</p>
<p>&#039;Values:<br />
&#039;doNumber = 153<br />
&#039;deNumber = 153</p>
<p>doNumber = double.Parse(number, CultureInfo.InvariantCulture);<br />
deNumber = decimal.Parse(number, CultureInfo.InvariantCulture);</p>
<p>&#039;Values:<br />
&#039;doNumber = 15.3<br />
&#039;deNumber = 15.3<br />
[/sourcecode]</p>
<p><strong>CultureInfo</strong> is a class that provides information on cultures and in particular the <strong>property InvariantCulture</strong> or <strong>CultureInfo.InvariantCulture</strong>, is the provider of <strong>culture information</strong> that does not vary by localization, see the mathematical punctuation symbols. The <strong>CultureInfo class is in the <strong>System.Globalization namespace</strong>, leaving the path as: <strong>System.Globalization.CultureInfo.InvariantCulture</strong>.</strong></p>
<p>Via: <a title="Double.Parse y Decimal.Parse con símbolos de putuación" href="http://www.indalcasa.com/programacion/dotnet-csharp/double-parse-y-decimal-parse-con-simbolos-de-putuacion/">Double.Parse y Decimal.Parse con símbolos de putuación</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hosting SVN with XP-Dev</title>
		<link>http://en.indalcasa.com/services/hosting-svn-with-xp-dev/</link>
		<comments>http://en.indalcasa.com/services/hosting-svn-with-xp-dev/#comments</comments>
		<pubDate>Mon, 30 May 2011 09:24:12 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=210</guid>
		<description><![CDATA[Took time searching for a formula to organize the sources of my projects. Each day that passes, I have more and more projects and I find it difficult to organize, that, without taking into account the possible loss of data or the problem of changing equipment. I had a long time that in addition to hosting web [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>Took time searching for a formula to organize the <strong>sources of my projects</strong>. Each day that passes, I have more and more projects and I find it difficult to organize, that, without taking into account the possible <strong>loss of data</strong> or the problem of <strong>changing equipment</strong>. I had a long time that in addition to <strong>hosting web</strong> host could <strong>create SVN repositories</strong>, the problem was that this had to enter the <strong>console</strong>, <strong>create the repository</strong> and could do little more than use the <strong>SVN repository</strong>. Some projects I decided that having an idea they were <strong>opensource</strong>, could take advantage of the <strong>service offered by Google Code</strong>, but of course, other <strong>projects </strong>are personal projects I&#8217;m <strong>developing </strong>for other companies and <strong>Google Code</strong>, only lets you <strong>use opensource projects</strong>.</p>
<p>Some research online, I found <strong>XP-Dev</strong>, a <strong>hosting service</strong> only offers <strong>hosting for SVN, GIT and Mercurial</strong>. The service offers a free version for which we use for 2 <strong>projects private and public </strong>all you want, with a maximum disk space 200 MB. The <strong>free service</strong> limits us some access features such as SSL, in addition, other features are not missing anything, because it has a complete system with which to <strong>manage projects</strong>, <strong>manage tasks</strong>, <strong>manage bugs</strong>, wikis, etc. all easily configurable. From 4 € per month, $ 5, we have access to basic account, which will give us access to full service as SSL access, you can create as many <strong>projects </strong>as you like <strong>opensource or private</strong>.</p>
<p>Maybe someone will think that the best and simplest is to fit a <strong>SVN server at home</strong>, but the reality is that sometimes it&#8217;s more comfortable, use a <strong>cloud service</strong> and not worry about<strong> losing the sources of our projects</strong> or access to them whenever we want and it is best <strong>XP-Dev</strong>.</p>
<p>You can find a <a title="XP-Dev pricing list" href="http://www.xp-dev.com/pricing">price list</a> and a <a title="Features list" href="http://www.xp-dev.com/features">list of features</a> on the website of <a title="XP-Dev SVN Hosting" href="http://www.xp-dev.com">XP-Dev</a>.</p>
<p>Via: <a title="Hosting SVN con XP-Dev" href="http://www.indalcasa.com/servicios/hosting-svn-con-xp-dev/">Hosting SVN con XP-Dev</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/services/hosting-svn-with-xp-dev/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RockMelt the social networks browser based on Chrome</title>
		<link>http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/</link>
		<comments>http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 10:31:36 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[rockmelts]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=198</guid>
		<description><![CDATA[Reading the other day @manoloruiz, I discovered a new social browser called RockMelt, based on Google Chrome. RockMelt is a browser based on Google Chrome, looking very similar to Google Chrome, except for some small details. The thing that strikes me is that nothing RockMelt start, a window, similar to the connection that makes Google Chrome with GMail, but in this case access to Facebook, to import our Facebook account. Once we found it to login on Facebook, you will see a sidebar with our contacts from facebook, can chat with them. On the other side we find a bar with the applications installed by default Facebook and Twitter, but for now you can also Youtube, where [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.indalcasa.com/wp-content/uploads/2011/03/RockMelt.png" class="grouped_elements" rel="tc-fancybox-group198" title="RockMelt the social networks browser based on Chrome"><img class="alignleft size-full wp-image-714" title="RockMelt" src="http://www.indalcasa.com/wp-content/uploads/2011/03/RockMelt.png" alt="RockMelt" width="236" height="87" /></a>Reading the other day @manoloruiz, I discovered a <strong>new social browser called RockMelt</strong>, <strong>based on Google Chrome</strong>. <strong>RockMelt is a browser based on Google Chrome</strong>, looking very similar to <strong>Google Chrome</strong>, except for some small details. The thing that strikes me is that nothing <strong>RockMelt </strong>start, a window, similar to the connection that makes <strong>Google Chrome with GMail</strong>, but in this case <strong>access to Facebook</strong>, to import our <strong>Facebook account</strong>. Once we found it to <strong>login on Facebook</strong>, you will see a <strong>sidebar with our contacts from facebook</strong>, can chat with them. On the other side we find a bar with the applications installed by default <strong>Facebook </strong>and <strong>Twitter</strong>, but for now you can also <strong>Youtube</strong>, where you can see updates of our <strong>social networks</strong> and add content directly from this bar. Finally stands next tothe address bar, the <strong>share button</strong>, which will allow us to share the current page in any of our <strong>social networks</strong>.</p>
<p>The truth is that this browser is very good looking and I think it will become my secondary browser and work as well at a glance I can see the <strong>twitter</strong>. It looks pretty good, the only problem is still not in Spanish translation, but everything will come.</p>
<p>Here some screenshots <strong>browser</strong>.</p>
<p style="text-align: center;"><a href="http://www.indalcasa.com/wp-content/uploads/2011/03/rockmelt-download.jpg" class="grouped_elements" rel="tc-fancybox-group198" title="RockMelt the social networks browser based on Chrome"><img class="aligncenter size-medium wp-image-715" title="RockMelt download page" src="http://www.indalcasa.com/wp-content/uploads/2011/03/rockmelt-download-300x247.jpg" alt="RockMelt download page" width="300" height="247" /></a><a href="http://www.indalcasa.com/wp-content/uploads/2011/03/rockmelt-facebook-login.png" class="grouped_elements" rel="tc-fancybox-group198" title="RockMelt the social networks browser based on Chrome"></a></p>
<p style="text-align: center;"><a href="http://www.indalcasa.com/wp-content/uploads/2011/03/rockmelt-facebook-login.png" class="grouped_elements" rel="tc-fancybox-group198" title="RockMelt the social networks browser based on Chrome"><img class="aligncenter size-medium wp-image-716" title="RockMelt Facebook access" src="http://www.indalcasa.com/wp-content/uploads/2011/03/rockmelt-facebook-login-300x198.png" alt="RockMelt Facebook access" width="300" height="198" /></a></p>
<p style="text-align: center;"><a href="http://www.indalcasa.com/wp-content/uploads/2011/03/rockmelt-home.png" class="grouped_elements" rel="tc-fancybox-group198" title="RockMelt the social networks browser based on Chrome"><img class="aligncenter size-medium wp-image-717" title="RockMelt home page" src="http://www.indalcasa.com/wp-content/uploads/2011/03/rockmelt-home-300x226.png" alt="RockMelt home page" width="300" height="226" /></a></p>
<p style="text-align: left;">Via: <a title="RockMelt el navegador social basado en Chrome" href="http://www.indalcasa.com/navegadores/rockmelt-el-navegador-social-basado-en-chrome/" target="_blank">RockMelt el navegador social basado en Chrome</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When GMail or GTalk for Android doesn&#8217;t works</title>
		<link>http://en.indalcasa.com/linux/android/when-gmail-or-gtalk-for-android-doesnt-works/</link>
		<comments>http://en.indalcasa.com/linux/android/when-gmail-or-gtalk-for-android-doesnt-works/#comments</comments>
		<pubDate>Sat, 23 Oct 2010 20:53:36 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[gtalk]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=191</guid>
		<description><![CDATA[A few days ago, stopped running the native applications on GMail and GTalk for Android that come installed by default in Android. Others may not use them, but for me the fact that GMail and GTalk not work was something that killed inside me. GMail for example I download messages stopped and gave a lot [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.indalcasa.com/wp-content/uploads/2010/08/android.png" class="grouped_elements" rel="tc-fancybox-group191" title="When GMail or GTalk for Android doesn't works"><img class="alignleft size-thumbnail wp-image-342" title="Google Android" src="http://www.indalcasa.com/wp-content/uploads/2010/08/android-150x150.png" alt="" width="150" height="150" /></a>A few days ago, <strong>stopped running the native applications on GMail and GTalk for Android</strong> that come installed by default in <strong>Android</strong>. Others may not use them, but for me the fact that <strong>GMail</strong> and <strong>GTalk</strong> not work was something that killed inside me. <strong>GMail</strong> for example I <strong>download messages stopped</strong> and gave a lot to update, no new messages and download directly, <strong>GTalk</strong> I opened, I carried the screen &#8220;loading&#8221; and briefly disappeared, ie, <strong>GTalk doesn&#8217;t open</strong>. As a workaround I set the <strong>mail from HTC</strong> and install the <strong>Fring</strong>, but <strong>mail from HTC</strong> but much better than <strong>GMail</strong>, I prefer the <strong>lightness and speed of GMail</strong>, and <strong>Fring</strong>, directly I do not like, besides that the time to have it open and be in the home is closed I just do not know why.</p>
<p><a href="http://www.indalcasa.com/wp-content/uploads/2010/10/gmail-gtalk-android.png" class="grouped_elements" rel="tc-fancybox-group191" title="When GMail or GTalk for Android doesn't works"><img class="alignright size-medium wp-image-671" title="GMail y GTalk Android" src="http://www.indalcasa.com/wp-content/uploads/2010/10/gmail-gtalk-android-300x142.png" alt="" width="300" height="142" /></a>Seeing that this was something they were doing a change from <strong>Google</strong>, I decided to fix it. The solution has been rather more simple than I imagined, as always, a cleaning program is best, and therefore we&#8217;re going to <strong>Settings&gt; Applications&gt; Manage Applications</strong> and once here, we should look for applications that call <strong>&#8220;Gmail&#8221;</strong>, <strong>&#8220;Gmail Storage&#8221;</strong>, <strong>&#8220;Google Talk&#8221;</strong> and <strong>&#8220;Saving Google Talk&#8221;</strong>. In each of the chips must erase the system data and to do so by pressing the <strong>&#8220;Clear&#8221;</strong> and ready, but that if, in the 2, program and storage and if you&#8217;re like me you not function or <strong>GMail</strong> or <strong>GTalk</strong> They have to do it in 4. Once done, we can open new applications and <strong>GMail</strong> will receive mailings, but will have to sync and if you take a lot of time, but the <strong>GTalk</strong> works on the first run.</p>
<p>I hope you have served this small <strong>fix GMail for Android or GTalk for Android when not working</strong>.</p>
<p>Via: <a href="http://www.indalcasa.com/linux/android/cuando-gmail-o-gtalk-para-android-no-funcionan/">Cuando GMail o GTalk para Android no funcionan</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/linux/android/when-gmail-or-gtalk-for-android-doesnt-works/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Released version 0.2 of puntoengine</title>
		<link>http://en.indalcasa.com/developement/php/released-version-0-2-of-puntoengine/</link>
		<comments>http://en.indalcasa.com/developement/php/released-version-0-2-of-puntoengine/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 13:57:55 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[puntoengine]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=184</guid>
		<description><![CDATA[I posted the new version of Punto Engine PHP, or PEP in the version 0.2. This version brings significant improvements over the previous version, by managing the system better able to make templates for dynamic pages much easier and faster. Among the improvements are: Added change log file Added virtual path (accesible in the browser) at the [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>I posted the new version of <strong>Punto Engine PHP</strong>, or <strong>PEP</strong> in the <strong>version 0.2</strong>. This version brings significant improvements over the previous version, by managing the system better able to make templates for dynamic pages much easier and faster. Among the improvements are:</p>
<ul>
<li>Added change log file</li>
<li>Added virtual path (accesible in the browser) at the <strong>kernel</strong></li>
<li>Added <strong>servlet</strong> url in a class attribute</li>
<li>Added detailed exception trace where are configured in web.xml</li>
<li>Added in web.xml a config section with debug mode</li>
<li>Added debug atribute in <strong>servlet class</strong> to realice the traces if the project are in debug mode</li>
<li>Added base redirect same a <strong>aspnet</strong>. If redirect url starts with &#8220;~/&#8221;, the url take the base project url</li>
<li>Added <strong>masterpage</strong> functionality with secction page and dinamic code same include and <strong>php code</strong></li>
<li>Added functionality when a path has ~/ chageit for virtual path same a <strong>dotnet</strong> with runat server</li>
<li>Updated the error page message that are reference at IDCS Server and change its for <strong>&#8220;Punto Engine Server&#8221;</strong></li>
<li>Updated the HomeController class to a TestController with many examples of templates use with <strong>masterpage</strong></li>
<li>Fixed the some exception pages showed when have a multiple errors. Now stops the process when the error throwed</li>
<li>Delete temporaly the PepAdminController from web.xml to can&#8217;t access it</li>
</ul>
<p>The improvements in this release are quite substantial and allows for more fluid pages. For those who want to download it can do so by logging into the <a href="http://puntoengine.googlecode.com">project puntoengine website</a>.</p>
<p>Via: <a href="http://www.indalcasa.com/programacion/php/publicada-la-version-0-2-de-puntoengine/">Publicada la versión 0.2 de puntoengine</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/developement/php/released-version-0-2-of-puntoengine/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Curious char methods, IsLetter and IsDigit</title>
		<link>http://en.indalcasa.com/developement/dotnet-framework/csharp/curious-char-methods-isletter-and-isdigit/</link>
		<comments>http://en.indalcasa.com/developement/dotnet-framework/csharp/curious-char-methods-isletter-and-isdigit/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 06:51:37 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Visual Basic .Net]]></category>
		<category><![CDATA[aspnet]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[dotnet]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[netframework]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[vbnet]]></category>
		<category><![CDATA[visualbasic]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=127</guid>
		<description><![CDATA[The other day, we were about my boss and I make a control on a text field of a web application. The idea was that this area could include only text or numbers, but in no case should be possible to include strange characters. Let us be honest and if we needed to use this [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>The other day, we were about my boss and I make a control on a text field of a web application. The idea was that this area could include <strong>only text or numbers</strong>, but in no case should be possible to include <strong>strange characters</strong>. Let us be honest and if we needed to use this in languages where the framework was not prepared to differentiate what kind of <strong>character</strong> he was, just <strong>creating an array or dictionary</strong>, and <strong>comparing the characters</strong> or by <strong>using regular expressions</strong>. Of course, since the leap to <strong>Microsoft technology</strong> (in this case <strong>Visual Basic. Net</strong>) I decided to find some class or method to do just what I wanted, and found.</p>
<p><strong>DotNet</strong> exists a <strong>class Char</strong>, which is the <strong>method Char.IsLetterOrDigit(boolean)</strong> which indicates a <strong>char</strong> or <strong>character</strong>, and this will return true or false if a <strong>number or letter</strong> and false if not. Ride a function to go <strong>character</strong> by <strong>character</strong> <strong>text field is alphanumeric</strong> checking whether or not the idea of erasing <strong>non-alphanumeric characters</strong>. Once mounted the role, I try a few times and everything works great. When we&#8217;re going to have to get into production &#8230; surprise, the last test failed (but impossible), we slipped the finger and put a &#8220;1&#8243;, put a &#8220;º&#8221;. When we investigate (ha try boars), we realize that this <strong>function</strong> requires that the <strong>characters</strong> &#8220;º&#8221; and &#8220;ª&#8221; are <strong>alphanumeric</strong>, we are lyrics, I suppose the &#8220;o&#8221; and &#8220;a&#8221;.</p>
<p>We control it and go, but if someone is in the same situation and knows that if some function to work properly comment on it. And if anyone looking for internet is blocked and is found in this post, you can breathe easy, because there is a <strong>malfunction</strong>, it does not work quite right. Yes, I know that for some &#8220;º&#8221; and &#8220;ª&#8221; are letters, but they are really <strong>special characters</strong>.</p>
<p>Via: <a href="http://www.indalcasa.com/programacion/char-curiosidad-de-isletter-e-isdigit/">Char curiosidad de IsLetter e IsDigit</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/developement/dotnet-framework/csharp/curious-char-methods-isletter-and-isdigit/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>OmmWriter, a Zen text edit</title>
		<link>http://en.indalcasa.com/macos-x/ommwriter-a-zen-text-edit/</link>
		<comments>http://en.indalcasa.com/macos-x/ommwriter-a-zen-text-edit/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 10:22:17 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=137</guid>
		<description><![CDATA[I recently discovered a new text editor for Mac called OmmWriter, at first seemed a bit simple and rare, since it is a very zen background (simple as they come) with a little music relaxing. I thought it was a notebook, but more pulling to roll zen. When I turn off the television, music and [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p><a title="OmmWriter" href="http://www.indalcasa.com/wp-content/uploads/2009/11/Logo-OmmWriter.png" class="grouped_elements" rel="tc-fancybox-group137" title="OmmWriter, a Zen text edit"><img class="size-full wp-image-173 alignleft" title="Logo OmmWriter" src="http://www.indalcasa.com/wp-content/uploads/2009/11/Logo-OmmWriter.png" alt="Logo de OmmWriter" width="260" height="260" /></a></p>
<p>I recently discovered a <strong>new text editor for Mac called OmmWriter</strong>, at first seemed a bit simple and rare, since it is a very <strong>zen</strong> background (simple as they come) with a little music relaxing. I thought it was a <strong>notebook</strong>, but more pulling to roll <strong>zen</strong>. When I turn off the television, music and started writing, I discovered that is true of what supposedly is the <strong>editor</strong>, and its aim is to <strong>concentrate all attention</strong> on what is being <strong>written</strong>.</p>
<p>When you <strong>remove all distractions</strong>, where the only sound you hear is the <strong>music zen</strong> and keystrokes, which besides their own, <strong>OmmWriter </strong>has a special little sounds for the beats, gives a relaxing feel very good, plus it has an entire screen with a very <strong>relaxing background</strong> where you <strong>write </strong>and the only thing that appears is the <strong>text </strong>you type, no menus or anything that may distract. There are no <strong>words </strong>to explain how to write from the <strong>text editor</strong>, you just have to try.</p>
<p>Among other options such as opening and saving <strong>documents </strong>(logically had to come), we can change the font and size, as well as <strong>keyboard sounds</strong>, <strong>background zen music</strong> and background among several preset options, always including a very soothing tone, like <strong>music of nature with animal sounds, rivers, sea</strong>, etc.</p>
<p>Only one problem I see with this <strong>app </strong>is that when you move the mouse to select menu options and pass the mouse over an option, in fact we need a title indicates that it is each option, except that I think that the purpose of this <strong>app</strong> fulfills to perfection.</p>
<p>Finally say that whoever is lucky enough to have a <strong>Mac </strong>and want to try this <strong>great text editor for Mac OS X</strong>, you can do from the homepage of the project <a title="OmmWriter" href="http://www.ommwriter.com/">OmmWriter</a>.</p>
<p><a href="http://www.indalcasa.com/wp-content/uploads/2009/11/Captura-OmmWriter.jpg" class="grouped_elements" rel="tc-fancybox-group137" title="OmmWriter, a Zen text edit"><img class="size-medium wp-image-174 aligncenter" title="Captura OmmWriter" src="http://www.indalcasa.com/wp-content/uploads/2009/11/Captura-OmmWriter-300x187.jpg" alt="Captura OmmWriter" width="300" height="187" /></a></p>
<p>Via: <a title="OmmWriter, el editor de textos Zen" href="http://www.indalcasa.com/macintosh/ommwriter-el-editor-de-textos-zen/">OmmWriter, el editor de textos Zen</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/macos-x/ommwriter-a-zen-text-edit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Virtual namespaces with javascript</title>
		<link>http://en.indalcasa.com/developement/javascript/virtual-namespaces-with-javascript/</link>
		<comments>http://en.indalcasa.com/developement/javascript/virtual-namespaces-with-javascript/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 22:34:20 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=174</guid>
		<description><![CDATA[In most programming languages relatively mature and powerful, there is what we call a namespace. The namespace is a container name where we hold classes, functions and variables that can be repeated with the same name in other namespaces without involving an error. A example of what the real utility of organizing or namespaces is [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>In most <strong>programming languages</strong> relatively mature and powerful, there is what we call a <strong>namespace</strong>. The <strong>namespace</strong> is a <strong>container name</strong> where we <strong>hold classes</strong>, <strong>functions</strong> and <strong>variables</strong> that can be repeated with the same name in other <strong>namespaces</strong> without involving an error. A <strong>example</strong> of what the real utility of <strong>organizing or namespaces</strong> is in the graphics libraries of <strong>programming languages</strong>, since in these libraries a very common element the Window class is usually referred to a window but may be in GTK, QT,. Net, Windows API, etc. (This is not quite correct since GTK would GtkWindow but for the example). <strong>Javascript</strong> as a <strong>language</strong> and more to mature over the years and relatively <strong>standardized</strong> by modern <strong>browsers</strong>, despite being a <strong>multiparadigm programming language</strong>, as do <strong>PHP</strong>, also has <strong>namespaces</strong>, but due to weakness of these <strong>namespaces variables</strong> are more virtual than real.</p>
<p>And understanding that it is serving a <strong>namespace to declare it in javascript</strong>, what we should do is use <strong>arrays</strong> to generate. Thanks to the weakness and dynamism of the <strong>variables in javascript</strong>, we can assign to a <strong>variable</strong> array of positions by name and access these through a <strong>punctuation mark</strong> &#8220;.&#8221; and not their common <strong>key array</strong> ["key"], so here comes the trick. Basically what we do by <strong>declaring a namespace in javascript</strong> is assigned to a <strong>variable array with the positions of the namespace</strong> and then and within these positions, log in as if from <strong>.Net</strong> or <strong>Java</strong> in question. With an <strong>example</strong> is simpler.</p>
<blockquote>
<pre lang="javascript">var Indalcasa = { Tools : {} };

Indalcasa.Tools.MyClass = function() {
  this.variable = "value";

  this.myMethod = function(parameters) {
    return this.variable + " " + parameters;
  }
};

var iClass = new Indalcasa.Tools.MyClass();
iClass.variable = "new value";
alert(iClass.myMethod("test"));</pre>
</blockquote>
<p>The above <strong>example</strong> shows an alert window with a message such that &#8220;new value test&#8221;, as we have <strong>instantiated the namespace class</strong>, we changed the value to the <strong>class attribute</strong> and the <strong>class method</strong>, concatenate the value of <strong>class attribute</strong> to the parameters that we have passed. This is a small and <strong>simple example</strong> of what can be done with <strong>javascript, namespaces and classes</strong>.</p>
<p>Via: <a href="http://www.indalcasa.com/programacion/javascript/namespaces-o-espacios-de-nombre-virtuales-en-javascript/">Namespaces o espacios de nombre virtuales en javascript</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/developement/javascript/virtual-namespaces-with-javascript/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Released version 0.1.1 of puntoengine</title>
		<link>http://en.indalcasa.com/developement/php/released-version-0-1-1-of-puntoengine/</link>
		<comments>http://en.indalcasa.com/developement/php/released-version-0-1-1-of-puntoengine/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 15:25:17 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[aspnet]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[puntoengine]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=167</guid>
		<description><![CDATA[Yesterday I posted the version 0.1.1 of puntoengine. Punto Engine PHP or puntoengine or shortened PEP, is an alpha-phase PHP MVC framework type Model View Controller. This framework bases its functionality in a mixture of different web frameworks such as ASP.Net, Java Servlets and PHP in and old framework called RLM Engine. Today, despite being in a [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>Yesterday I posted the <strong>version 0.1.1 of puntoengine</strong>. <strong>Punto Engine PHP</strong> or <strong>puntoengine</strong> or shortened <strong>PEP</strong>, is an alpha-phase <strong>PHP MVC framework</strong> type <strong>Model View Controller</strong>. This <strong>framework</strong> bases its functionality in a mixture of <strong>different web frameworks</strong> such as <strong>ASP.Net</strong>, <strong>Java Servlets</strong> and <strong>PHP</strong> in and old <strong>framework</strong> called <strong>RLM Engine</strong>. Today, despite being in a very green stage of <strong>development</strong>, but it is fully operational and <strong>can build websites</strong> with a <strong>servlets</strong> as you would a <strong>website in Java</strong>. <strong>Version 0.1.1 in revision 7 puntoengine </strong>is the <strong>last released version 0.1.1 of puntoengine</strong> but with <strong>full documentation of the code</strong>, making it easier for anyone who wants to see and <strong>study the code</strong> and its operation, make it easier to follow. For <strong>version 0.2 of puntoengine</strong> is expected to create an administrator, currently under development to <strong>manage including servlets installed</strong> and preparation for <strong>future plugins</strong> such as the <strong>CMS system</strong>.</p>
<p>This is a long-term and very ambitious to go far and I hope to use it to <strong>build several websites</strong> that I have in mind. According to a calculation made according to the <strong>COCOMO system</strong>, currently the project with almost <strong>1500 lines of code</strong>, would have a private cost of 6,000 €. For those who want to take a look and even collaborate with the <strong>development</strong>, <strong>documentation</strong> or <strong>providing issues</strong>, you can do on the <a href="http://code.google.com/p/puntoengine/">web puntoengine project</a>.</p>
<p>Via: <a href="http://www.indalcasa.com/programacion/php/publicada-la-version-0-1-1-de-puntoengine/">Publicada la version 0.1.1 de puntoengine</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/developement/php/released-version-0-1-1-of-puntoengine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valid Autocomplete=&#8221;off&#8221; for XHTML</title>
		<link>http://en.indalcasa.com/developement/html/valid-autocomplete-off-for-xhtml/</link>
		<comments>http://en.indalcasa.com/developement/html/valid-autocomplete-off-for-xhtml/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 23:00:59 +0000</pubDate>
		<dc:creator><![CDATA[juan]]></dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://en.indalcasa.com/?p=115</guid>
		<description><![CDATA[When writing a text in a text input type (&#60;input type=&#8221;text&#8221; /&#62;) we find that generally the browser is going to autocomplete what you are writing at that time with text that we have already written earlier, recalling for input called &#8220;name&#8221; the name or names you have entered. The practice of auto is very [&#8230;]<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>When writing a text in a text <strong>input type (&lt;input type=&#8221;text&#8221; /&gt;)</strong> we find that generally the browser is going to autocomplete what you are writing at that time with text that we have already written earlier, recalling for input called &#8220;name&#8221; the name or names you have entered.</p>
<p>The practice of auto is very helpful whenever we have repetitive forms such as registration <strong>forms</strong> are similarly always call and they always ask the same data, avoid <strong>rewrite</strong> all our data over and over again.</p>
<p>There are cases where you might not want that the browser will <strong>autocomplete the text</strong>, may be the case that we have an online store that paying by credit card and we do not want that credit card we <strong>autocomplete</strong>. To avoid this, there is an attribute that is used by the vast majority of browsers is the <strong>attribute autocomplete=&#8221;on|off&#8221;</strong>, if the value is cleared off, tells the browser <strong>not autocomplete the field</strong>.</p>
<p>Although in many cases it is <strong>good practice</strong> to use the <strong>autocomplete attribute</strong>, the <strong>W3C</strong> has recognized this <strong>attribute</strong> as an <strong>attribute</strong> of the input tag with which to try to <strong>validate</strong> and meet with the <strong>autocomplete attribute</strong>, we give a <strong>validation error</strong>. To resolve the <strong>validation error</strong> that will be <strong>using javascript to add this attribute</strong>, the functionality is still there, but we will not have <strong>validation</strong> issues.</p>
<p>The only thing we do is add the following code at the bottom of the page, or at least, just after declaring the input</p>
<blockquote>
<pre lang="javascript"><script type="text/javascript">
    //<![CDATA[
    var inputElement = document.getElementById("inputId")
    inputElement.setAttribute("autocomplete", "off");
    //]]&gt;
  </script></pre>
</blockquote>
<p>In this way we will ensure that when entering text in a <strong>input autocomplete</strong> not by the browser and if we can do for you <strong>autocomplete javascript</strong>.</p>
<p>A good and beautiful example of <strong>autocomplete fields</strong> is the use for <a title="Buscador de vuelos de Muchoviaje" href="http://ofertas.muchoviaje.com/vuelos">muchoviaje</a> in the areas of origin and destination.</p>
<p>Via: <a href="http://www.indalcasa.com/programacion/autocompleteoff-valido-para-xhtml/">Autocomplete=”off” valido para XHTML</a></p>
<div class="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://en.indalcasa.com/browsers/rockmelt-the-social-networks-browser-based-on-chrome/"     class="crp_title">RockMelt the social networks browser based on Chrome</a></li><li><a href="http://en.indalcasa.com/services/hosting-svn-with-xp-dev/"     class="crp_title">Hosting SVN with XP-Dev</a></li><li><a href="http://en.indalcasa.com/developement/dotnet-framework/csharp/double-parse-and-decimal-parse-with-pointing-symbols/"     class="crp_title">Double.Parse and Decimal.Parse with pointing symbols</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://en.indalcasa.com/developement/html/valid-autocomplete-off-for-xhtml/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.506 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-12-07 18:19:28 -->
