Forum Moderators: phranque
I'm not sure how to go about this. Perhaps I have no other choice but to use javascript. I've been thinking on a way to work around this, without editing 100 extra pages all with a different background image pre-embeded.
I do know a little bit about php, if that helps.
Suggestions?
On each thumbnail, you link to a new window (change the [path of image file] to the actual path:
<a href="/pictureframe.asp?path=[path of image file]" target=_blank>
In the pictureframe.asp, you can simply add the following asp code and the other part in the body tag.
<%
path=request.querystring("path")
%>
<body background="<%=path%>" >
This will enable you to load any image in the pictureframe.asp as a background image. I'd still prefer to use jscript if possible for this though.