<?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: ASP - Recent Posts</title>
		<link>http://www.dudasprogramacion.com/tags/asp</link>
		<description>Dudas sobre lenguajes y apis de programación</description>
		<language>en-US</language>
		<pubDate>Sun, 05 Feb 2012 07:23:28 +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/asp" rel="self" type="application/rss+xml" />

		<item>
			<title>asugom on "Recoger Datos"</title>
			<link>http://www.dudasprogramacion.com/topic/recoger-datos#post-613</link>
			<pubDate>Thu, 09 Sep 2010 22:15:44 +0000</pubDate>
			<dc:creator>asugom</dc:creator>
			<guid isPermaLink="false">613@http://www.dudasprogramacion.com/</guid>
			<description><p>buenas, espero no sea tarde.</p>
<p>ahora al punto, para escribir en javascript si lo puedes hacer con <code>document.write(variable)</code> pero como tu variable viene de asp, resolverias tu problema haciendo:</p>
<pre class="asp" style="font-family:monospace;">document.<span style="color: #330066;">write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #008000;">'&amp;#60;%=request(&quot;variable&quot;)%&amp;#62;')</span></pre>
<p>ve que llamamos a lavariable dentro de los &#60;%%&#62; de asp y la recogemos de la misma manera que lo hariamos en asp. Si quieres, tambien podrias escribirla desde el mismo codigo de asp haciendo</p>
<pre class="asp" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span> <span style="color: #990099; font-weight: bold;">request</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;variable&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span></pre></description>
		</item>
		<item>
			<title>asugom on "Tratamiento de un Recordset para totalizar ventas"</title>
			<link>http://www.dudasprogramacion.com/topic/tratamiento-de-un-recordset-para-totalizar-ventas#post-612</link>
			<pubDate>Wed, 08 Sep 2010 01:18:26 +0000</pubDate>
			<dc:creator>asugom</dc:creator>
			<guid isPermaLink="false">612@http://www.dudasprogramacion.com/</guid>
			<description><p>hola, espero no sea muy tarde.<br />
Creo que el error es que la consulta no esta devolviendo nada, probablemente sea porque estas llegando a EOF cuando haces <code>Rst_Datos_Inf_SesImp.MoveNext</code> y luego intentas obtener datos de alli. Podrias validar que no sea EOF adentro antes de hacer el movenext o con un contador validar antes de hacer el movenext que el contador no sea mayor a <code>Rst_Datos_Inf_SesImp.Recordcount</code>
</p></description>
		</item>
		<item>
			<title>angell on "Tratamiento de un Recordset para totalizar ventas"</title>
			<link>http://www.dudasprogramacion.com/topic/tratamiento-de-un-recordset-para-totalizar-ventas#post-609</link>
			<pubDate>Thu, 02 Sep 2010 09:34:38 +0000</pubDate>
			<dc:creator>angell</dc:creator>
			<guid isPermaLink="false">609@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola, he realizado una consulta en Sql, y ahora quiero, recorriendo el Recordset obtenido, ir sumando ventas; pero sólo puedo sumar aquellas que tienen el mismo mes, para ello me creo variables locales para el mes y año, y luego, una vez que muevo el cursor al siguiente registro y voy a comparar el valor del mes en la variable con el valor del siguiente registro, Asp me dice lo siguiente "Requested operation requires a current record".<br />
La pregunta es qué tengo que hacer para comparar el registro anterior con el actual, en el Recordset obtenido de una consulta. Os paso el código desarrollado por si os ayuda: </p>
<pre class="asp" 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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span><span style="color: #990099; font-weight: bold;">Do</span> <span style="color: #990099; font-weight: bold;">While</span> <span style="color: #990099; font-weight: bold;">Not</span> Rst_Datos_Inf_SesImp.<span style="color: #0000ff; font-weight: bold;">Eof</span> <span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;NombreCompleto&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Titular_Cuenta&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Ent&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Suc&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;dc&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;ccc&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;ID_Sesion&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Fecha&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Año&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Mes&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span> Mes_Rst <span style="color: #006600; font-weight: bold;">=</span> Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Mes&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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;">Mes_Rst<span style="color: #006600; font-weight: bold;">:&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Mes_Rst<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span> Ano_Rst <span style="color: #006600; font-weight: bold;">=</span> Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Año&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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;">Ano_Rst<span style="color: #006600; font-weight: bold;">:&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Ano_Rst<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Hora&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Importe&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>td<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span>Importe <span style="color: #006600; font-weight: bold;">=</span> Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Importe&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>tr<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span>Total <span style="color: #006600; font-weight: bold;">=</span> Total + Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Importe&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span>Rst_Datos_Inf_SesImp.<span style="color: #9900cc;">MoveNext</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span>Ano <span style="color: #006600; font-weight: bold;">=</span> Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Año&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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;">Ano<span style="color: #006600; font-weight: bold;">::&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Ano<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span>Mes <span style="color: #006600; font-weight: bold;">=</span> Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Mes&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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;">Mes<span style="color: #006600; font-weight: bold;">::&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Mes<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span> <span style="color: #990099; font-weight: bold;">if</span> Ano <span style="color: #006600; font-weight: bold;">=</span> Ano_Rst <span style="color: #990099; font-weight: bold;">then</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: #990099; font-weight: bold;">if</span> Mes <span style="color: #006600; font-weight: bold;">=</span> Mes_Rst <span style="color: #990099; font-weight: bold;">then</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;">Total_Mes <span style="color: #006600; font-weight: bold;">=</span> Total + Rst_Datos_Inf_SesImp.<span style="color: #330066;">Fields</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Importe&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</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: #990099; font-weight: bold;">else</span> <span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Total_Mes<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span><span style="color: #990099; font-weight: bold;">end</span> if<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span><span style="color: #990099; font-weight: bold;">end</span> if<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%=</span>Total_Mes<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</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: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span>loop<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</span></div></li></ol></pre></description>
		</item>
		<item>
			<title>Tom on "Recoger Datos"</title>
			<link>http://www.dudasprogramacion.com/topic/recoger-datos#post-608</link>
			<pubDate>Wed, 01 Sep 2010 17:48:32 +0000</pubDate>
			<dc:creator>Tom</dc:creator>
			<guid isPermaLink="false">608@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola, soy bastante nuevo en esto del javascript y tengo una duda q no creo q resulte demasido dificiles para vosotr@s</p>
<p>Me gustaría saber cómo puedo recoger una variable de una página anterior, y luego escribirla por pantalla.</p>
<p>Supongo q después de recogerla debo hacer document.write(variable) ¿no??</p>
<p>Ah!! una cosa, tengo una página en asp con javascript y la paso asi:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;formulario.asp?dinero=&amp;#60;%=sum%&quot;</span>&gt;</span><span style="color: #ddbb00;">&amp;#62;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span></pre>
<p>¿cómo recojo esa variable??<br />
Gracias muchas
</p></description>
		</item>
		<item>
			<title>fiurer87 on "Como llamar a un .bat"</title>
			<link>http://www.dudasprogramacion.com/topic/como-llamar-a-un-bat#post-453</link>
			<pubDate>Tue, 25 May 2010 03:25:01 +0000</pubDate>
			<dc:creator>fiurer87</dc:creator>
			<guid isPermaLink="false">453@http://www.dudasprogramacion.com/</guid>
			<description><p>mira aqui:<br />
<a href="http://www.soloasp.com.ar/vermensaje2.asp?idmensaje=24956&#038;idforo=3" rel="nofollow">http://www.soloasp.com.ar/vermensaje2.asp?idmensaje=24956&#038;idforo=3</a>
</p></description>
		</item>
		<item>
			<title>Alvin on "Como llamar a un .bat"</title>
			<link>http://www.dudasprogramacion.com/topic/como-llamar-a-un-bat#post-448</link>
			<pubDate>Mon, 24 May 2010 13:59:55 +0000</pubDate>
			<dc:creator>Alvin</dc:creator>
			<guid isPermaLink="false">448@http://www.dudasprogramacion.com/</guid>
			<description><p>Como puedo llamar un .bat que conlleve 5 parametros para el .bat, es decir en el DOS lo corro de esta forma:</p>
<p>&#34;C:GraficaCreaGrafica 168 188 169 188 1&#34;</p>
<p>Al correr esto me genera el gráfico que necesito, sin embargo no se la forma de llamar un bat desde ASP ó código VBScript.</p>
<p>Gracias
</p></description>
		</item>
		<item>
			<title>Fitoo on "Validar contraseñas con asp en html"</title>
			<link>http://www.dudasprogramacion.com/topic/validar-contrasenas-con-asp-en-html#post-340</link>
			<pubDate>Mon, 22 Mar 2010 12:15:52 +0000</pubDate>
			<dc:creator>Fitoo</dc:creator>
			<guid isPermaLink="false">340@http://www.dudasprogramacion.com/</guid>
			<description><p>Necesito comprovar q el nombre introducido coincide con la contraseña y es correcta, y una vez hecho esto q me enlace con una pagina q contiene un curriculum q deve ser rellenado por un usuario
</p></description>
		</item>
		<item>
			<title>proc34 on "ASPUpload"</title>
			<link>http://www.dudasprogramacion.com/topic/aspupload#post-292</link>
			<pubDate>Mon, 04 Jan 2010 13:58:54 +0000</pubDate>
			<dc:creator>proc34</dc:creator>
			<guid isPermaLink="false">292@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola, soy nuevo en esto y necesito ayuda.</p>
<p>Necesito subir fotos e imagenes (gif y jpeg) a una base de datos access. Utilizo ASP y aspupload. </p>
<p>Despues de mirar en muuuuchos lugares (todos lamentablemente en ingles, en español hay demasiada poca información, mucho copiar y pegar de sync) y llegue a logar que me suba el texto que queria  y un campo (que en la base de datos defino como &#34;objeto OLE&#34;) que se sube pero al abrir la base de datos, y abrir la tabla donde tengo el objeto, al querer abrirlo me da error. (nota: intenté agregar una foto a la base directamente desde el access, y cuando lo hago, el campo (Objeto OLE) </p>
<p>se completa con la palabra &#34;paquete&#34;, sin embargo, cuando lo hago con aspupload se completa con la frase &#34;binario largo&#34;</p>
<p>Como soluciono eso? y si no se puede, de que forma puedo usar aspupload para subir 3 imagenes  (image1 image2 e image3 de un formulario) y junto con esas imagenes, 3 o más campos comunes de formulario (nombre, apellido, telefono de un formulario)</p>
<p>envio lo que ya llegué a hacer, quizás incluso pueda ayudar a alguien que sabe menos que yo.</p>
<p>archivos</p>
<p>sube.htm<br />
==============================================================================</p>
<p>&#60;html&#62;<br />
&#60;head&#62;<br />
&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=iso-8859-1&#34;&#62;<br />
&#60;title&#62;Documento sin t&#237;tulo&#60;/title&#62;<br />
&#60;/head&#62;</p>
<p>&#60;body&#62;<br />
&#60;form action=&#34;odbc_upload.asp&#34; method=&#34;post&#34; enctype=&#34;multipart/form-data&#34; name=&#34;form1&#34;&#62;<br />
&#60;input name=&#34;desc&#34; type=&#34;text&#34; id=&#34;desc&#34;&#62;<br />
&#60;input name=&#34;foto&#34; type=&#34;file&#34; id=&#34;foto&#34;&#62;<br />
&#60;input type=&#34;submit&#34; name=&#34;Submit&#34; value=&#34;Enviar&#34;&#62;<br />
&#60;/form&#62;<br />
&#60;/body&#62;<br />
&#60;/html&#62;</p>
<p>==============================================================================</p>
<p>odbc_upload.asp<br />
==============================================================================</p>
<p>&#60;HTML&#62;<br />
&#60;BODY&#62;<br />
&#60;%<br />
Set Upload = Server.CreateObject(&#34;Persits.Upload&#34;)<br />
' Capture files<br />
Upload.Save &#34;c:\upload&#34; 'creo que es generico para todos los servidores, NO MODIFICAR</p>
<p>' Obtain file object<br />
Set File = Upload.Files(&#34;foto&#34;)</p>
<p>If Not File Is Nothing Then<br />
' Build ODBC connection string<br />
Connect = &#34;DSN=aspupload&#34;<br />
'el DSN esta configurado como &#34;Microsoft DataBase Driver (*.mbd)&#34; y la base de<br />
'datos tiene las tablas id (autonumerico), image (objeto OLE) y piso (texto). en<br />
'ese orden</p>
<p>' Build SQL INSERT statement<br />
SQL = &#34;INSERT INTO MYIMAGES(image_blob, filename, description, filesize) VALUES(?, '&#34;<br />
SQL = SQL &#38; File.Filename &#38; &#34;', '&#34;<br />
SQL = SQL &#38; Replace(Upload.Form(&#34;desc&#34;), &#34;'&#34;, &#34;''&#34;) &#38; &#34;', &#34;<br />
SQL = SQL &#38; File.Size &#38; &#34;)&#34;</p>
<p>' Save to database<br />
File.ToDatabase Connect, SQL<br />
Response.Write &#34;Archivo subido.&#34;<br />
Else<br />
Response.Write &#34;no se selecciono ningun archivo.&#34;<br />
End If<br />
%&#62;<br />
&#60;/BODY&#62;<br />
&#60;/HTML&#62;
</p></description>
		</item>
		<item>
			<title>alvaro alejandro on "Problemas con el Separador Decimal"</title>
			<link>http://www.dudasprogramacion.com/topic/problemas-con-el-separador-decimal#post-289</link>
			<pubDate>Sat, 02 Jan 2010 12:25:49 +0000</pubDate>
			<dc:creator>alvaro alejandro</dc:creator>
			<guid isPermaLink="false">289@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola a Todos.<br />
ojala puedan ayudarme, tengo una red con servidor WINDOWS SERVER 2003 y tengo un sistema de inventarios hecho en asp, ya he cambiado la configuracion regional pero sigo con el problema de que cuando me introducen &#34;.&#34; (punto) , como separador decimal no acepta y cuando meten &#34;,&#34; (coma), si acepta, y todos los resultados en pantalla me muestra con punto. Yo quiero usar el punto como separador decimal</p>
<p>Por favor AYUDA ya prove todo, de antemano GRACIAS
</p></description>
		</item>
		<item>
			<title>yeradis on "ASP y Consultas Access"</title>
			<link>http://www.dudasprogramacion.com/topic/asp-y-consultas-access#post-65</link>
			<pubDate>Tue, 31 Mar 2009 13:22:11 +0000</pubDate>
			<dc:creator>yeradis</dc:creator>
			<guid isPermaLink="false">65@http://www.dudasprogramacion.com/</guid>
			<description><p>Saludos y buen dia</p>
<p>Aqui te dejo unos enlaces que estan en ingles las paginas pero el codigo se deja entender bastante bien ;) </p>
<p>Esto es lo que estas buscando :<br />
<a href="http://www.webconcerns.co.uk/asp/accessqueries/accessqueries.asp" rel="nofollow">http://www.webconcerns.co.uk/asp/accessqueries/accessqueries.asp</a></p>
<p>Y este otro ejemplo tambien te serviria :</p>
<pre class="asp" 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;">...</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: #990099; font-weight: bold;">Set</span> objConn <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #990099; font-weight: bold;">Server</span>.<span style="color: #330066;">CreateObject</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;ADODB.Connection&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</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;">objConn.<span style="color: #330066;">Open</span> <span style="color: #cc0000;">&quot;Provider=Microsoft.Jet.OLEDB.4.0; Data Source=&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">38</span><span style="color: #006600; font-weight: bold;">;</span> <span style="color: #990099; font-weight: bold;">Server</span>.<span style="color: #330066;">MapPath</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;/MIDB.mdb&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</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: #990099; font-weight: bold;">Set</span> objRS <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #990099; font-weight: bold;">Server</span>.<span style="color: #330066;">CreateObject</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;ADODB.Recordset&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</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;">strQuery <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;MIQUERY&quot;</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;">objRS.<span style="color: #330066;">Open</span> strQuery, objConn, <span style="color: #800000;">0</span>, <span style="color: #800000;">4</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;">...</div></li></ol></pre>
<p>El ejemplo es de esta pagina : <a href="http://www.xefteri.com/articles/show.cfm?id=6" rel="nofollow">http://www.xefteri.com/articles/show.cfm?id=6</a></p>
<p>Sin mas<br />
Me despido
</p></description>
		</item>
		<item>
			<title>yeradis on "Nombre de Host de Cliente"</title>
			<link>http://www.dudasprogramacion.com/topic/nombre-de-host-de-cliente#post-63</link>
			<pubDate>Tue, 31 Mar 2009 10:38:32 +0000</pubDate>
			<dc:creator>yeradis</dc:creator>
			<guid isPermaLink="false">63@http://www.dudasprogramacion.com/</guid>
			<description><p>otra vez aqui</p>
<p>ya encontre el codigo para que tengas una idea mejor</p>
<pre class="asp" style="font-family:monospace;"><span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;</span>table<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</span>
<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;%</span>
    <span style="color: #990099; font-weight: bold;">for</span> <span style="color: #990099; font-weight: bold;">each</span> svr_variabble <span style="color: #990099; font-weight: bold;">in</span> <span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">ServerVariables</span>
        <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;&amp;#60;tr&amp;#62;&amp;#60;td&amp;#62;&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">38</span><span style="color: #006600; font-weight: bold;">;</span> svr_variable <span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">38</span><span style="color: #006600; font-weight: bold;">;</span> <span style="color: #cc0000;">&quot;&amp;#60;/td&amp;#62;&amp;#60;td&amp;#62;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
        <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">ServerVariables</span><span style="color: #006600; font-weight:bold;">&#40;</span>svr_variable<span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
        <span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;&amp;#60;/td&amp;#62;&amp;#60;/tr&amp;#62;&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">38</span><span style="color: #006600; font-weight: bold;">;</span> vbCrLf<span style="color: #006600; font-weight:bold;">&#41;</span>
    <span style="color: #990099; font-weight: bold;">next</span>
<span style="color: #006600; font-weight: bold;">%&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</span>
<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">60</span><span style="color: #006600; font-weight: bold;">;/</span>table<span style="color: #006600; font-weight: bold;">&amp;</span>#<span style="color: #800000;">62</span><span style="color: #006600; font-weight: bold;">;</span></pre>
<p>Con esto podras ver todas las variables del servidor entre ellas la REMOTE_ADDR<br />
lo que la verdad es que cualquiera que use un servidor proxy la ip que obtendras con esta variable es la de ese proxy</p>
<p>y para saber el pais de donde viene un usuario puedes usar los servicios de Maxmind</p>
<p>para que tengas una idea</p>
<p><a href="http://www.maxmind.com/app/locate_ip?ips=Request.ServerVariables(" rel="nofollow">http://www.maxmind.com/app/locate_ip?ips=Request.ServerVariables(</a>"REMOTE_ADDR")</p>
<p>Donde Request.ServerVariables("REMOTE_ADDR") te dara la ip del usuario que accedio a la pagina , claro que con esto no haces mucho solo podras ver una pagina con los datos y ademas estas limitado a 25 peticioes diarias a no ser que te hagas una cuenta de prueba y tendras mas opciones entre ellas acceder a una api que habia por alli</p>
<p>pero para que vayas mejor encaminado busca servicios GeoIP<br />
que son los usados normalmente para saber la procedencia de una ip</p>
<p>Sin mas ....<br />
Ahora si me despido
</p></description>
		</item>
		<item>
			<title>yeradis on "Nombre de Host de Cliente"</title>
			<link>http://www.dudasprogramacion.com/topic/nombre-de-host-de-cliente#post-62</link>
			<pubDate>Tue, 31 Mar 2009 10:29:17 +0000</pubDate>
			<dc:creator>yeradis</dc:creator>
			<guid isPermaLink="false">62@http://www.dudasprogramacion.com/</guid>
			<description><p>Saludos y buen dia</p>
<p>Te recomiendo que te mires la variable REMOTE_ADDR</p>
<p>Sin mas<br />
Me despido
</p></description>
		</item>
		<item>
			<title>yeradis on "comienzo con xml"</title>
			<link>http://www.dudasprogramacion.com/topic/comienzo-con-xml#post-52</link>
			<pubDate>Mon, 30 Mar 2009 17:03:45 +0000</pubDate>
			<dc:creator>yeradis</dc:creator>
			<guid isPermaLink="false">52@http://www.dudasprogramacion.com/</guid>
			<description><p>ya estoy aqui nuevamente</p>
<p>de libros te recomiendo:</p>
<p>XML: The Complete Reference by Heather Williamson</p>
<p>Paperback: 965 pages<br />
Publisher: McGraw-Hill Companies; 1st edition (April 23, 2001)<br />
Language: English<br />
ISBN-10: 0072127341<br />
ISBN-13: 978-0072127348</p>
<p>y tambien</p>
<p>Título: The XML Schema Complete Reference</p>
<p>Este libro de consulta ha sido planteado como una fuente de información “todo en uno” diseñada para ayudar a los desarrolladores a aprovechar al máximo el potencial de los esquemas XML ofreciendo una “hoja de ruta” para su creación, diseño y uso.</p>
<p>Autores: Cliff Binstock, Dave Peterson, Mitchell Smith, Mike Wooding, Chris Dix, Chris Galtenberg</p>
<p>Año de publicación: septiembre 2002</p>
<p>Editorial: Addison Wesley Professional</p>
<p>Páginas: 1008<br />
Idioma: Inglés</p>
<p>Sin mas ....<br />
Me despido
</p></description>
		</item>
		<item>
			<title>yeradis on "comienzo con xml"</title>
			<link>http://www.dudasprogramacion.com/topic/comienzo-con-xml#post-51</link>
			<pubDate>Mon, 30 Mar 2009 17:02:53 +0000</pubDate>
			<dc:creator>yeradis</dc:creator>
			<guid isPermaLink="false">51@http://www.dudasprogramacion.com/</guid>
			<description><p>Saludos y buen dia</p>
<p>Para empezar hay varios libros que ahora te dire<br />
pero como programa te recomiendo Sin lugar a dudas XMLSpy Enterprise Edition 2008 o superio la 2009 ;)</p>
<p>hasta ahora....
</p></description>
		</item>
		<item>
			<title>lineadecodigo on "envio de datos de un formulario"</title>
			<link>http://www.dudasprogramacion.com/topic/envio-de-datos-de-un-formulario#post-44</link>
			<pubDate>Sun, 22 Mar 2009 19:51:02 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">44@http://www.dudasprogramacion.com/</guid>
			<description><p>Puedes utilizar o bien un lenguaje PHP o ASP para que mediante un servidor te llegué a tu correo electrónico. Por ejemplo tienes:</p>
<ul>
<li><a href="http://lineadecodigo.com/2009/03/11/mandar-emails-con-aspemail/" rel="nofollow">http://lineadecodigo.com/2009/03/11/mandar-emails-con-aspemail/</a></li>
</ul>
<p>O bien intentar enviártelo utilizando solo HTML. Para ese caso puedes leer lo siguiente:</p>
<ul>
<li><a href="http://lineadecodigo.com/2009/02/27/enviar-emails-desde-una-pagina-web/" rel="nofollow">http://lineadecodigo.com/2009/02/27/enviar-emails-desde-una-pagina-web/</a></li>
</ul></description>
		</item>

	</channel>
</rss>

