Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/03/2005, 11:39
Avatar de pablinweb
pablinweb
 
Fecha de Ingreso: julio-2003
Mensajes: 283
Antigüedad: 21 años, 9 meses
Puntos: 0
La verdad que no lo puedo reproducir a mi me dá bien, te paso el codigo para que pruebes.

Pagina 1:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
<!--#include file="../Files/adovbs.inc" -->
<!--#include file="../DB/Connect.asp" -->
<%
Sql = "SELECT * FROM G_COUNTRIES"
%>
<!--#include file="../DB/Rs.asp" -->
</head>
<body>
<form action="test2.asp" method="post" name="frm">
<table width="700" border="0">
<% do while not Rs.eof %>
<tr>
<td><div align="right">
<input name="txt" type="text" id="txt" value="<%=Rs("DS_COUNTRY")%>"><%=Rs("CD_COUNTRY")% >
</div></td>
<td><input name="chk" type="radio" value="<%=Rs("CD_COUNTRY")%>"></td>
</tr>
<% Rs.movenext
loop %>
</table>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
<%
<!--#include file="../DB/closeRsConn.asp" -->
%>
</html>


Pagina 2:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
</head>
<body>
<%
response.Write(Request.Form("chk"))
%>
</body>
</html>

O si quieres pasame las dos paginas completas para probarlo.