html - click on Image display image on new window -
i data database in images , other fields, want when click on image open in new window code is
<a target="_blank" href="#"> <img alt="" src="<%#"data:image/png;base64,"+convert.tobase64string((byte[])eval("imagedata")) %>"" width="200" height="200" /> </a>
what should img pass next window , display large or actual size
the href
attribute of a
tag has contain same filepath src
attribute inside img
tag. added target="_blank"
, image open in new window, in original size, showing nothing else image.
Comments
Post a Comment