ASP - IMAGENES CON ASP Y HTML

 
Vista:

IMAGENES CON ASP Y HTML

Publicado por yanet palafox (8 intervenciones) el 11/07/2006 01:28:53
GRACIAS A QUIEN LEA MI PREGUNTA, NECESITO CAMBIAR EL SRC DE UNA IMAGEN HTML MEDIANTE UNA VARIABLE EN ASP QUE PUEDO HACER..., YA QUE ESA VARIABLE POSEE LA RUTA DE LA IMAGEN Y DEBE CAMBIAR DEPENDIENDO DE LA SELECCION DEL USUARIO.
MIL GRACIAS
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

RE:IMAGENES CON ASP Y HTML

Publicado por MarMed (30 intervenciones) el 11/07/2006 20:10:32
<html>
....
.....
<%
if TALCOSA then
ruta="c:\img1.gif"
else
ruta="http://www.pagina.com/image.gif"
end if
%>
...
...
<img src=<%=ruta%> width="19" height="20">
...
...
</html>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar