Quote:
quote:
The only problem with that is that the src name is dynamic - so I dont know what it is...
|
Change this line
<img src="abc.gif" onclick="openwin('newwindow.asp?imgname=abc.gif')" >
to this one:
<img src="<%=imgvar%>" onclick="openwin('newwindow.asp?imgname=<%=imgvar% >')">
'here imgvar is the image name being generated on the fly.
Vinay