Compañeros tengo un detalle...
En pagina asp quiero desplegar una lista donde se
despliega algunos option donde el usuario puede optar y
el valor a tener, pero horizontal no debe de aceptarme
dos respuestas pero vertical si, entonces no se como
hacerla para que me acepte , como debe de ser para
hacerlo mando el codigo
<table align="left" widht="100%" width="436">
<tr>
<th bgcolor="#DDF0FE" width="13%"><font
size=3>Country</th>
<th bgcolor="#DDF0FE" width="13%"><font
size=3>PerUnit</th>
<th bgcolor="#DDF0FE" width="20%"><font size=3>Import
Price</th>
<th bgcolor="#DDF0FE" width="67"><font size=3>Kg</th>
<th bgcolor="#DDF0FE" width="16%"><font
size=3>Shipment</th>
<th bgcolor="#DDF0FE" width="17%"><font
size=3>Value</th>
</tr>
<!-- #include file="..\general\conexion.asp" -->
<%
sql = "SELECT * FROM dtarules"
set tbl= db.execute(sql)
While NOT tbl.EOF%>
<tr>
<Td size=2 ><%response.write(tbl("country"))%
</Td>
<Td size=2 ><p><input type="radio" name="R2" <%
if tbl("perunit")= "True" then response.write "Checked"%>
</p></Td>
<Td size=2 ><p><input type="radio" name="R2" <%
if tbl("perunit")= "True" then response.write "Checked"%
</p></Td>
<Td size=2 ><p><input type="radio" name="R3" <%
if tbl("perunit")= "True" then response.write "Checked"%
</p></Td>
<Td size=2 ><p><input type="radio" name="R4" <%
if tbl("perunit")= "True" then response.write "Checked"%
</p></Td>
<Td size=2 ><p><input type="text" name="value"
align="right" size="8" value=<%response.write(tbl
("value"))%> style="text-align: right"></p></Td>
</tr>
<%tbl.MoveNext
Wend %>
</form>
gracias
saludos
miguel
Leer las respuestas