Este es el formulario que esta dentro de una pagina ASP
Código:
<form name="comprar" action="comprar.asp?art=308&t=C" enctype="application/x-www-form-urlencoded" method="post">
<tr>
<td height="25"><div align="center"><span class="negrita10">.: Canario cantor </span></div></td>
</tr>
<tr>
<td width="333" height="61" valign="top"><table width="327" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="19" colspan="2"><div align="center"><span class="Estilo14">Precio Unitario:</span></div></td>
<td width="149"><span class="Estilo8">$ 500.00</span></td>
</tr>
<tr>
<td width="95" height="23"><div align="right"><span class="Estilo14">Cantidad </span></div></td>
<td width="83"><div align="center">
<select class="Estilo8" name="cantidad">
<option value="1" selected>1</option>
</select>
</div></td>
<td><span class="Estilo16">de 1 disponibles </span></td>
</tr>
<tr>
<td height="34" colspan="2"> </td>
<td class="Estilo16"><div align="right"><input type="image" src="imagenes/tablas/contenedorclaro2/info/comprar.gif" width="85" height="25" onclick="document.forms.comprar.submit();"></div></td>
</tr>
</table></td>
</tr>
</form>
y en la pagina comprar.asp capturo los valores con REquest(""), pero directamente la pantalla se me keda en blanco.-
Código:
Response.Buffer=True
art = SqlSafe(Request("art"))
canti = SqlSafe(Request("cantidad"))
t = SqlSafe(Request("t"))