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

Popular posts from this blog

sql server - Deadlock occuring in Clustered Columnstore index -

python - What's the Pythonic way to report nonfatal errors in a parser? -

angular - Converting AngularJS deffered promise to AngularX observable for JSOM -