Download HTML image

0

I have this code:

<td class=suplantacion><div align="center">Nombre_Tabla</div><a href=<%=rs("IDENTIDICACION")%> 
    download=<%=rs("IDENTIDICACION")%>>Imagen</a></td>

Which when clicking on the link shows an image, I'm using the download attribute but, it only shows me the image and I need you to download it

    
asked by ARR 22.06.2018 в 19:41
source

1 answer

0

Do not add download any attribute:

<a href="<%=rs("IDENTIDICACION")%" download>Imagen</a> 
    
answered by 22.06.2018 в 19:47