<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
>
	<channel>
		<title>Dudas de Programacion &#187; Tag: codigo - Recent Posts</title>
		<link>http://www.dudasprogramacion.com/tags/codigo</link>
		<description>Dudas sobre lenguajes y apis de programación</description>
		<language>en-US</language>
		<pubDate>Mon, 21 May 2012 23:25:36 +0000</pubDate>
		<generator>bbpress 1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.dudasprogramacion.com/search.php</link>
		</textInput>
		<atom:link href="http://www.dudasprogramacion.com/rss/tags/codigo" rel="self" type="application/rss+xml" />

		<item>
			<title>fiurer87 on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-522</link>
			<pubDate>Fri, 18 Jun 2010 17:36:28 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">522@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>lineaDeCodigo:</p>
<p>Es mas fácil de lo que se lee, me refiero con sincronizar a crear un Objeto Date de Javascript a partir de la hora recuperada de servidor, de esta forma se evita tener que consultar cada segundo (si quisieras ver que el reloj cambie segundo a segundo), si no simplemente ejecutar de forma local.</p>
<p>Mando un ejemplo de lo que quiero decir con sincronización.</p>
<pre class="javascript" style="font-family:monospace;">&nbsp;
<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;</span>script language<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;Javascript&quot;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span>
  horaServidor <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Date<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  horaServidor.<span style="color: #660066;">setDate</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;?</span>php echo intval<span style="color: #009900;">&#40;</span>date<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'j'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  horaServidor.<span style="color: #660066;">setMonth</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;?</span>php echo intval<span style="color: #009900;">&#40;</span>date<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'n'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  horaServidor.<span style="color: #660066;">setFullYear</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;?</span>php echo intval<span style="color: #009900;">&#40;</span>date<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Y'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  horaServidor.<span style="color: #660066;">setHours</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;?</span>php echo intval<span style="color: #009900;">&#40;</span>date<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'H'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  horaServidor.<span style="color: #660066;">setMinutes</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;?</span>php echo intval<span style="color: #009900;">&#40;</span>date<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'i'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  horaServidor.<span style="color: #660066;">setSeconds</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;?</span>php echo intval<span style="color: #009900;">&#40;</span>date<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'s'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;/</span>script<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span>
&nbsp;</pre>
<p>De esta manera con solo un par de consultas al Servidor ya tengo un Objeto Date (horaServidor) de Javascript que tenga la hora y fecha sincornizado con el servidor, a partir de ese objeto ya puedes hacer lo que desees.</p>
<p>Espero haberme explicado.</p>
<p>Atte: Roberto<br />
Potosí - Bolivia
</p>]]></description>
		</item>
		<item>
			<title>lineadecodigo on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-518</link>
			<pubDate>Fri, 18 Jun 2010 13:34:16 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">518@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>@fiurer87,</p>
<p>Cual es la idea cuando hablas de utilizar el Objeto sincronizado en tu web?
</p>]]></description>
		</item>
		<item>
			<title>lineadecodigo on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-517</link>
			<pubDate>Fri, 18 Jun 2010 13:33:33 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">517@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>@mrvlls,</p>
<p>Si te vale la hora del cliente, tienes el siguiente ejemplo<br />
<a href="http://lineadecodigo.com/javascript/reloj-en-javascript/" rel="nofollow">http://lineadecodigo.com/javascript/reloj-en-javascript/</a>
</p>]]></description>
		</item>
		<item>
			<title>fiurer87 on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-515</link>
			<pubDate>Thu, 17 Jun 2010 14:33:32 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">515@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<pre>
Sugerencia para el uso de hora de servidor:
    - Sincronizar un Objeto Date de JavaScript con la hora de servidor que se recupera mediante ASP, PHP u otros.
    - Utilizar el Objeto sincronizado en tu web.

Mala Práctica al usar hora de Servidor:
    - Solicitar repetitivamente la hora al servidor.
</pre>]]></description>
		</item>
		<item>
			<title>fiurer87 on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-514</link>
			<pubDate>Thu, 17 Jun 2010 14:29:37 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">514@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>Hola,<br />
Para poder extraer la hora del servidor, REQUIERES NECESARIAMENTE de una herramienta que se ejecute en servidor (ASP, PHP, etc); el HTML es de ejecución local, esto quiere decir que no sale de tu PC.</p>
<p>Solo usando HTML + JavaScript no hay manera de hacer lo que deseas.</p>
<p>Quiza una pseudo solucion sería usar AJAX, pero al final AJAX también solicita información al servidor mediante PHP, ASP u otros.</p>
<p>En conclusión: NO SE PUEDE RECUPERAR LA HORA DEL SERVIDOR SIMPLEMENTE USANDO HTML.</p>
<p>Puedes leer un poco sobre el tema en este link <a href="http://es.wikipedia.org/wiki/Servidor_web" rel="nofollow">http://es.wikipedia.org/wiki/Servidor_web</a>
</p>]]></description>
		</item>
		<item>
			<title>mrvlls on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-513</link>
			<pubDate>Thu, 17 Jun 2010 13:46:30 +0000</pubDate>
			<dc:creator>mrvlls</dc:creator>
			<guid isPermaLink="false">513@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>Ante todo muchas gracias por sus respuestas.<br />
Lo hago en una página HTML. No uso ASP ni PHP. Lo puedo hacer de otra forma??
</p>]]></description>
		</item>
		<item>
			<title>fiurer87 on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-512</link>
			<pubDate>Wed, 16 Jun 2010 17:34:53 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">512@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>de forma similar en usando PHP puedes hacer los siguiente:</p>
<pre class="php" style="font-family:monospace;"><ol><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;script language=&quot;JavaScript&quot;&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">     horaServ <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;? echo date(“ G:i:s ”) ?&amp;#62;; //Obtienes la hora de servidor de forma 18:05:15.</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;/script&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li></ol></pre>]]></description>
		</item>
		<item>
			<title>lineadecodigo on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-505</link>
			<pubDate>Mon, 14 Jun 2010 15:57:48 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">505@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>Víctor,</p>
<p>¿Dónde estás utilizando el código? ¿En una página web?<br />
Necesitas un servidor ASP y poner el código en una página .ASP</p>
<p>Espero que te ayude. Cualquier otra pregunta no dudes en consultarnos.
</p>]]></description>
		</item>
		<item>
			<title>mrvlls on "Hora del Servidor"</title>
			<link>http://www.dudasprogramacion.com/topic/hora-del-servidor#post-504</link>
			<pubDate>Mon, 14 Jun 2010 09:12:28 +0000</pubDate>
			<dc:creator>mrvlls</dc:creator>
			<guid isPermaLink="false">504@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>Hola </p>
<p>He usado el código que tienen para el tema de mostrar la hora del servidor de una pag. web <a href="http://lineadecodigo.com/asp/reloj-con-la-hora-del-servidor/" rel="nofollow">http://lineadecodigo.com/asp/reloj-con-la-hora-del-servidor/</a>, y lo he adaptado para mi página (un par de modificaciones de alguna variable, poca cosa). El caso es que el resultado que obtengo es NaN:NaN:NaN. Pero es más, copiando el código integro en una página en blanco y ejecutándolo me sale el mismo resultado que antes. </p>
<p>Me estoy volviendo loco y no sé como hacerlo, tengo hecho una prueba con otro código, pero el resultado es la hora de cada máquina cliente, y que por supuesto no me vale para el fin que estoy buscando. Si me pudieseis ayudar, os estaría muy agradecido, muchas gracias por todo y un saludo </p>
<p>Víctor Pizarro
</p>]]></description>
		</item>
		<item>
			<title>admin on "AYUDA FORO: Como poner código fuente"</title>
			<link>http://www.dudasprogramacion.com/topic/ayuda-foro-como-poner-codigo-fuente#post-503</link>
			<pubDate>Sat, 12 Jun 2010 19:48:59 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">503@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>Ejemplo con HTML:</p>
<pre class="html4strict" style="font-family:monospace;"><ol><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span> pre lang='html4strict' lineno='1'<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>html<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>body<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>h1<span style="color: #ddbb00;">&amp;#62;</span>Hola Mundo<span style="color: #ddbb00;">&amp;#60;</span>/h1<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>/body<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>/html<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span> /pre<span style="color: #ddbb00;">&amp;#62;</span></div></li></ol></pre>
<p>Que haría que se visualizase:</p>
<pre class="html4strict" style="font-family:monospace;"><ol><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>html<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>body<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>h1<span style="color: #ddbb00;">&amp;#62;</span>Hola Mundo<span style="color: #ddbb00;">&amp;#60;</span>/h1<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>/body<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>/html<span style="color: #ddbb00;">&amp;#62;</span></div></li></ol></pre>]]></description>
		</item>
		<item>
			<title>admin on "AYUDA FORO: Como poner código fuente"</title>
			<link>http://www.dudasprogramacion.com/topic/ayuda-foro-como-poner-codigo-fuente#post-502</link>
			<pubDate>Sat, 12 Jun 2010 19:26:43 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">502@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>Mediante el manejo de etiquetas en las entradas del foro podréis incluir código fuente resaltado de una forma sencilla.</p>
<p>Primero veamos cual es el resultado:</p>
<pre class="java" style="font-family:monospace;"><ol><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> HolaMundo <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">  <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Astring+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">String</span></a><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> args<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Asystem+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">System</span></a>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Hola Mundo&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">  <span style="color: #009900;">&#125;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #009900;">&#125;</span></div></li></ol></pre>
<p>Para utilizarlo tenéis que usar la etiqueta PRE:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span> pre<span style="color: #ddbb00;">&amp;#62;</span>Codigo<span style="color: #ddbb00;">&amp;#60;</span> /pre<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Si no ponéis atributos a la etiqueta PRE, se queda el formato por defecto. Pero podéis hacer que se realice el formato por lenguajes de programación. Esto lo conseguimos mediante el atributo LANG.</p>
<p>El siguiente código formatearía como si fuese Java:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span> pre lang='java'<span style="color: #ddbb00;">&amp;#62;</span>Codigo<span style="color: #ddbb00;">&amp;#60;</span> /pre<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Si, queremos añadir una numeración a las líneas, utilizaremos el atributo LINENO, dándole el número de la línea por el que queremos empezar</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span> pre lineno='1'<span style="color: #ddbb00;">&amp;#62;</span>codigo</pre>
<p>Por último podemos combinar los dos atributos, quedando el siguiente código</p>
<pre class="html4strict" style="font-family:monospace;"><ol><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span> pre lang='java' lineno='1'<span style="color: #ddbb00;">&amp;#62;</span>public class HolaMundo {</div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">  public static void main(String[] args) {</div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    System.out.println(&quot;Hola Mundo&quot;);</div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">  }</div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">}<span style="color: #ddbb00;">&amp;#60;</span> /pre<span style="color: #ddbb00;">&amp;#62;</span></div></li></ol></pre>]]></description>
		</item>
		<item>
			<title>FABIOLITA on "como comentar en html en blogger?"</title>
			<link>http://www.dudasprogramacion.com/topic/como-comentar-en-html-en-blogger#post-131</link>
			<pubDate>Sat, 06 Jun 2009 22:59:28 +0000</pubDate>
			<dc:creator>FABIOLITA</dc:creator>
			<guid isPermaLink="false">131@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>necesito hacer un dtd para el siguiente xml:</p>
<pre class="html4strict" style="font-family:monospace;"><ol><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>html<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"> <span style="color: #ddbb00;">&amp;#60;</span>encabezado<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>titulo<span style="color: #ddbb00;">&amp;#62;</span>-----<span style="color: #ddbb00;">&amp;#60;</span>titulo<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>body<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>h1<span style="color: #ddbb00;">&amp;#62;</span>----<span style="color: #ddbb00;">&amp;#60;</span>/hi<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>h2<span style="color: #ddbb00;">&amp;#62;</span>----<span style="color: #ddbb00;">&amp;#60;</span>/h2<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>table<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>/body<span style="color: #ddbb00;">&amp;#62;</span></div></li><li style="font-weight: normal; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #ddbb00;">&amp;#60;</span>/html<span style="color: #ddbb00;">&amp;#62;</span></div></li></ol></pre>
<p>pero no se si ustedes me pueden ayudar hacerlo
</p>]]></description>
		</item>
		<item>
			<title>Alonso on "sistemas de ecuaciones"</title>
			<link>http://www.dudasprogramacion.com/topic/sistemas-de-ecuaciones#post-122</link>
			<pubDate>Wed, 27 May 2009 22:34:06 +0000</pubDate>
			<dc:creator>Alonso</dc:creator>
			<guid isPermaLink="false">122@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>hola a tod@s necesito hacer un programa en visual basic que resuelva ecuaciones de tres y cuatro incognitas por el metodo de suma y resta y no tengo idea de como hacerlo.....<br />
porfa necesito de su ayuda soy nuevo en esto de programacion.......<br />
porfa echenme una mano con mi deber..........
</p>]]></description>
		</item>
		<item>
			<title>lineadecodigo on "como comentar en html en blogger?"</title>
			<link>http://www.dudasprogramacion.com/topic/como-comentar-en-html-en-blogger#post-106</link>
			<pubDate>Sun, 19 Apr 2009 08:02:13 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">106@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>En vez de poner el código HTML directamente tienes que cambiar el símbolo mayor y el símbolo menor por entidades...</p>
<p>&#62; por &#38; gt;<br />
&#60; por &#38; lt;</p>
<p>Así el código que tiene que utilizar para poner el código de una página web como comentario sería similar a:</p>
<p>&#38; lt;HTML&#38; gt;<br />
&#38; lt;BODY&#38; gt;<br />
Esto es una página web<br />
&#38; lt;/BODY&#38; gt;<br />
&#38; lt;/HTML&#38; gt;</p>
<p>Espero que te sea de ayuda.
</p>]]></description>
		</item>
		<item>
			<title>mauropadillaruiz on "como comentar en html en blogger?"</title>
			<link>http://www.dudasprogramacion.com/topic/como-comentar-en-html-en-blogger#post-104</link>
			<pubDate>Fri, 17 Apr 2009 15:09:19 +0000</pubDate>
			<dc:creator>mauropadillaruiz</dc:creator>
			<guid isPermaLink="false">104@http://www.dudasprogramacion.com/</guid>
			<description><![CDATA[<p>la cosa es que cundo intento comentar  un codigo ya sea una imagen o lo que sea no sirve no me deja comentar y me pone &#34;Su HTML no es aceptable: Tag is not allowed: &#60;body&#62;&#34;</p>
<p>ayudaaaaaa!!!
</p>]]></description>
		</item>

	</channel>
</rss>

