ASP - necesito ayuda urgente(3)

 
Vista:

necesito ayuda urgente(3)

Publicado por raul (62 intervenciones) el 07/08/2001 11:32:11
frame elegidos:

<table align=center width=100%>
<tr>
<td><u>
Producto</u>
</td>
<td><u>
Precio</u>
</td>
<td><u>
Fecha</u>
</td>
</tr><%if Request.QueryString("cod")<>"" then
dim rstp
set rstp=server.CreateObject("adodb.recordset")
rstp.ActiveConnection=session("con")
rstp.CursorLocation=adUseclient
rstp.LockType =adLockoptimistic
rstp.Source="select * from productos where id="& Request.QueryString("cod")
rstp.open
Do while not rstp.EOF%>
<tr>
<td><font size=2><%=rstp.Fields(2)%></FONT>
</td>
<td><font size=2><%=rstp.Fields(4)%></FONT>
</td>
<td><font size=2><%=rstp.Fields(0)%></FONT>
</td>
<%rstp.MoveNext
loop
end if%>
</tr>
</table>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder