<?xml version="1.0" encoding="UTF-8"?><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"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comentarios en: Fecha en castellano con VBScript</title> <atom:link href="http://lineadecodigo.com/vbscript/fecha-en-castellano-con-vbscript/feed/" rel="self" type="application/rss+xml" /><link>http://lineadecodigo.com/vbscript/fecha-en-castellano-con-vbscript/</link> <description>/* Programación en la red */</description> <lastBuildDate>Sun, 12 Feb 2012 03:07:18 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Por: Convertir una cadena a fecha en Javascript &#124; Diseño web económico</title><link>http://lineadecodigo.com/vbscript/fecha-en-castellano-con-vbscript/comment-page-1/#comment-51048</link> <dc:creator>Convertir una cadena a fecha en Javascript &#124; Diseño web económico</dc:creator> <pubDate>Wed, 01 Feb 2012 13:00:06 +0000</pubDate> <guid
isPermaLink="false">http://lineadecodigo.com/2007/01/18/fecha-en-castellano-con-vbscript/#comment-51048</guid> <description>[...] Fecha en castellano con VBScript [...]</description> <content:encoded><![CDATA[<p>[...] Fecha en castellano con VBScript [...]</p> ]]></content:encoded> </item> <item><title>Por: LUIS</title><link>http://lineadecodigo.com/vbscript/fecha-en-castellano-con-vbscript/comment-page-1/#comment-44902</link> <dc:creator>LUIS</dc:creator> <pubDate>Mon, 28 Jul 2008 18:41:55 +0000</pubDate> <guid
isPermaLink="false">http://lineadecodigo.com/2007/01/18/fecha-en-castellano-con-vbscript/#comment-44902</guid> <description>Hola soy estudiante de la universidad Tecnica de Babahoyo este es mi aporte hacia la programacion
Response.Write(Day(Date()) &amp; &quot;&quot;)
Response.Write(Month(Date()) &amp; &quot;&quot;)
Response.Write(Year(Date()) &amp; &quot;&quot;)
Response.Write(Hour(Time()) &amp; &quot;&quot;)
Response.Write(Minute(Time()) &amp; &quot;&quot;)
Response.Write(Second(Time()) &amp; &quot;&quot;)
Response.Write(DateAdd(&quot;m&quot;, -2, &quot;30-12-03&quot;))</description> <content:encoded><![CDATA[<p>Hola soy estudiante de la universidad Tecnica de Babahoyo este es mi aporte hacia la programacion<br
/> Response.Write(Day(Date()) &amp; &#8220;&#8221;)<br
/> Response.Write(Month(Date()) &amp; &#8220;&#8221;)<br
/> Response.Write(Year(Date()) &amp; &#8220;&#8221;)<br
/> Response.Write(Hour(Time()) &amp; &#8220;&#8221;)<br
/> Response.Write(Minute(Time()) &amp; &#8220;&#8221;)<br
/> Response.Write(Second(Time()) &amp; &#8220;&#8221;)<br
/> Response.Write(DateAdd(&#8220;m&#8221;, -2, &#8220;30-12-03&#8243;))</p> ]]></content:encoded> </item> <item><title>Por: LUIS</title><link>http://lineadecodigo.com/vbscript/fecha-en-castellano-con-vbscript/comment-page-1/#comment-44901</link> <dc:creator>LUIS</dc:creator> <pubDate>Mon, 28 Jul 2008 18:39:07 +0000</pubDate> <guid
isPermaLink="false">http://lineadecodigo.com/2007/01/18/fecha-en-castellano-con-vbscript/#comment-44901</guid> <description> Documento sin t&#237;tulo
=#12:00:00 PM#  and (weekday (fecha,domingo)=7)  or time()&lt;= #12:00:00 AM#  then
response.Write(&quot;buenas tardes hoy es un dia laborable &quot; &amp;hora&amp;&quot;&quot;)
else
response.Write(&quot;buenas dias&quot;)
end if
%&gt;
&#039;**********************************************************************************************
&#039;**********************************************************************************************
&#039;********************************************************************************************
&#039;********************************************************************************************
&lt;%
dim a,b,aleatorio,resultado,valor,mayusculas
valor=&quot;1987&quot;
response.Write(&quot;el resultado de len es:&quot; &amp;len(valor)&amp; &quot;&quot;)
aleatorio=1+100*rnd()
response.Write(&quot;el numero aleatorio es:&quot; &amp;aleatorio&amp; &quot;&quot;)
a=(65)
response.Write(asc(a)&amp; &quot;&quot;)
b=&quot;luis&quot;
response.Write(mid(b,3,2)&amp; &quot;&quot;)
mayusculas=&quot;LUIS&quot;
response.Write(&quot;la letra en mayuscula es:&quot; &amp;UCASE(mayusculas)&amp; &quot;&quot; )
raiz=25
response.Write(&quot;la raiz de 25 es:&quot; &amp;sqr(raiz)&amp; &quot;&quot;)
response.Write(&quot;EL AÑO ES:&quot; &amp;year(date())&amp; &quot;&quot;)
MES=TRIM(&quot;7/27/2008&quot;)
response.Write(&quot;EL MES ES:&quot; &amp;month(MES)&amp; &quot;&quot;)
%&gt;
&#039;*************************INVERTIR UN NUMERO*************************************************
&#039;*************************NUMERO PALINDROMO*************************************************
&#039;******************************************************************************************
&lt;%
dim r
r=1
do
response.Write r&amp; &quot; borreguitos &quot;
if r=10 then
response.Write(&quot;ya tengo todos los borreguitos&quot;)
END IF
r=r+1
loop while (r
&lt;%
dim i
for i=1 to 10
select case i
case 1:
response.Write(&quot;este es el maximo tamaño de letra&quot;)
case 2:
response.Write(&quot;este es un menor tamaño de letra&quot;)
end select
response.Write(&quot; LUIS MIGUEL &quot;&amp;i&amp;&quot; &quot;)
next
%&gt; </description> <content:encoded><![CDATA[<p>Documento sin t&iacute;tulo</p><p>=#12:00:00 PM#  and (weekday (fecha,domingo)=7)  or time()&lt;= #12:00:00 AM#  then<br
/> response.Write(&#8220;buenas tardes hoy es un dia laborable &#8221; &amp;hora&amp;&#8221;")<br
/> else<br
/> response.Write(&#8220;buenas dias&#8221;)<br
/> end if<br
/> %&gt;</p><p>&#8216;**********************************************************************************************</p><p>&#8216;**********************************************************************************************</p><p>&#8216;********************************************************************************************</p><p>&#8216;********************************************************************************************</p><p>&lt;%<br
/> dim a,b,aleatorio,resultado,valor,mayusculas<br
/> valor=&#8221;1987&#8243;<br
/> response.Write(&#8220;el resultado de len es:&#8221; &amp;len(valor)&amp; &#8220;&#8221;)</p><p>aleatorio=1+100*rnd()<br
/> response.Write(&#8220;el numero aleatorio es:&#8221; &amp;aleatorio&amp; &#8220;&#8221;)</p><p>a=(65)<br
/> response.Write(asc(a)&amp; &#8220;&#8221;)</p><p>b=&#8221;luis&#8221;<br
/> response.Write(mid(b,3,2)&amp; &#8220;&#8221;)</p><p>mayusculas=&#8221;LUIS&#8221;<br
/> response.Write(&#8220;la letra en mayuscula es:&#8221; &amp;UCASE(mayusculas)&amp; &#8220;&#8221; )</p><p>raiz=25<br
/> response.Write(&#8220;la raiz de 25 es:&#8221; &amp;sqr(raiz)&amp; &#8220;&#8221;)</p><p>response.Write(&#8220;EL AÑO ES:&#8221; &amp;year(date())&amp; &#8220;&#8221;)</p><p>MES=TRIM(&#8220;7/27/2008&#8243;)<br
/> response.Write(&#8220;EL MES ES:&#8221; &amp;month(MES)&amp; &#8220;&#8221;)</p><p>%&gt;</p><p>&#8216;*************************INVERTIR UN NUMERO*************************************************</p><p>&#8216;*************************NUMERO PALINDROMO*************************************************</p><p>&#8216;******************************************************************************************<br
/> &lt;%<br
/> dim r<br
/> r=1<br
/> do<br
/> response.Write r&amp; &#8221; borreguitos &#8221;<br
/> if r=10 then<br
/> response.Write(&#8220;ya tengo todos los borreguitos&#8221;)<br
/> END IF<br
/> r=r+1<br
/> loop while (r</p><p>&lt;%<br
/> dim i<br
/> for i=1 to 10<br
/> select case i<br
/> case 1:<br
/> response.Write(&#8220;este es el maximo tamaño de letra&#8221;)<br
/> case 2:<br
/> response.Write(&#8220;este es un menor tamaño de letra&#8221;)<br
/> end select<br
/> response.Write(&#8221; LUIS MIGUEL &#8220;&amp;i&amp;&#8221; &#8220;)<br
/> next<br
/> %&gt;</p> ]]></content:encoded> </item> </channel> </rss>
