Help! Thumbnail to pop in table layout on opposite side

liunx

Guest
I'm making a layout with tables. The table appears on the left side and i have pictures in the box.. On the right side it's just the color of the background and it's empty.. I was wondering how I could get my thumbnail pictures in the table to pop into the blank space on the right hand side of the page when you click on them.. I'm not sure if this is possible but I'm sure it is and I was wondering if anyone knew the code.. I've looked everywhere and tried just about everything and nothing works.. Please help! Thanks :)<!--content-->Try ASP:<br />
<br />
Default.asp:<br />
<html><br />
<br />
<head><br />
<style><br />
img { border-color : black; }<br />
</style><br />
<title>Picture-test</title><br />
</head><br />
<br />
<body><br />
<table border="1" cellpadding="5" cellspacing="0" width="100%"><br />
<tr><br />
<td width="16%" valign="top"><br />
<p align="center"><br />
<a href=http://www.htmlforums.com/archive/index.php/"default.asp?part=1"><img src="pic1.gif" width="50" height="50"></a><br><br><br />
<a href=http://www.htmlforums.com/archive/index.php/"default.asp?part=2"><img src="pic2.gif" width="50" height="50"></a><br><br><br />
<a href=http://www.htmlforums.com/archive/index.php/"default.asp?part=3"><img src="pic3.gif" width="50" height="50"></a><br />
</td><br />
<td width="84%" valign="top"><br />
<%If Request.QueryString("part") = "" Then%><br />
No Picture!<br />
<%ElseIf Request.QueryString("part") = "1" Then%><br />
<img src=http://www.htmlforums.com/archive/index.php/"pic1.gif"><br />
<%ElseIf Request.QueryString("part") = "2" Then%><br />
<img src=http://www.htmlforums.com/archive/index.php/"pic2.gif"><br />
<%ElseIf Request.QueryString("part") = "3" Then%><br />
<img src=http://www.htmlforums.com/archive/index.php/"pic3.gif"><br />
<%End If%><br />
</td><br />
</tr><br />
</table><br />
</body></html><br />
<br />
Here纾
 
Back
Top