Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/09/2007, 04:09
rokiu
 
Fecha de Ingreso: septiembre-2007
Mensajes: 72
Antigüedad: 17 años, 4 meses
Puntos: 1
pasar valor a funcion

<img OnClick='Borrar("idpost")' src="../imagenes/borrar.jpg" alt="Enviar" width="100" height="20">


hla!

estoy pasndole así el valor de la variable "idpost", a la funcion borrar?

idpost sale de una consulata a una BD en ASP.

<%
Set Rs = Conn.Execute(sSTR_1)
do while not RS.EOF
titulo = RS("titulo")
idpost = RS("idpost")
%>
<OPTION value="<%= idpost %>"><%= titulo %></OPTION>
<%
RS.MoveNext
loop
RS.Close
%>
</select>
</td>
</tr>
<%
end if
%>
</center>
</table>
</form>

<center>
<img OnClick='Borrar("idpost")' src="../imagenes/borrar.jpg" alt="Enviar" width="100" height="20">

gracias, unsaludo