I have posted this question on a javascript forum as it contains
javascript code however it was believed to be an asp issue.
The following head section javascript code contains the function
showBigImage( isource,bigImag e,header ) function call of discussion:
var currentImage;
function showBigImage( isource,bigImag e,header ) {
var theImage = document.getEle mentById( 'largeimage' );
theImage.src = isource;
currentImage = bigImage;
document.getEle mentById( 'photoHeader' ).innerHTML=hea der;
document.getEle mentById( 'largeimage' ).alt=header;
The following rendered looped recordset code illustrates how the
"header" parameter of this showBigImage( isource,bigImag e,header )
function call does not render ONLY FOR THE FIRST RECORD OF THE
RECORDSET as it is blank:
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/portable_stage. jpg&width=250', 'images/
portable_stage. jpg','' )"<img src="imagescrip t.asp?path=imag es/
portable_stage. jpg&width=36" border="0" alt="" /</td</a>
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/seated_riserset .jpg&width=250' ,'images/
seated_riserset .jpg','Portable stage configuration using 9 units of
the 3 ft x 8 ft platforms in 3 different heights' )"<img
src="imagescrip t.asp?path=imag es/seated_riserset .jpg&width=36"
border="0" alt="" /</td</a>
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/Stageset.jpg&wi dth=250','image s/Stageset.jpg',' Portable
stage configuration using 16 units of the 4 ft x 8 ft platforms' )">
<img src="imagescrip t.asp?path=imag es/Stageset.jpg&wi dth=36"
border="0" alt="" /</td</a>
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/Runset.jpg&widt h=250','images/Runset.jpg','Po rtable stage
runset configuration' )"<img src="imagescrip t.asp?path=imag es/
Runset.jpg&widt h=36" border="0" alt="" /</td</a>
Because of this problem, the caption text does not display for this
first image record once the thumbnail images are moused over. You can
view this page example at
javascript code however it was believed to be an asp issue.
The following head section javascript code contains the function
showBigImage( isource,bigImag e,header ) function call of discussion:
var currentImage;
function showBigImage( isource,bigImag e,header ) {
var theImage = document.getEle mentById( 'largeimage' );
theImage.src = isource;
currentImage = bigImage;
document.getEle mentById( 'photoHeader' ).innerHTML=hea der;
document.getEle mentById( 'largeimage' ).alt=header;
The following rendered looped recordset code illustrates how the
"header" parameter of this showBigImage( isource,bigImag e,header )
function call does not render ONLY FOR THE FIRST RECORD OF THE
RECORDSET as it is blank:
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/portable_stage. jpg&width=250', 'images/
portable_stage. jpg','' )"<img src="imagescrip t.asp?path=imag es/
portable_stage. jpg&width=36" border="0" alt="" /</td</a>
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/seated_riserset .jpg&width=250' ,'images/
seated_riserset .jpg','Portable stage configuration using 9 units of
the 3 ft x 8 ft platforms in 3 different heights' )"<img
src="imagescrip t.asp?path=imag es/seated_riserset .jpg&width=36"
border="0" alt="" /</td</a>
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/Stageset.jpg&wi dth=250','image s/Stageset.jpg',' Portable
stage configuration using 16 units of the 4 ft x 8 ft platforms' )">
<img src="imagescrip t.asp?path=imag es/Stageset.jpg&wi dth=36"
border="0" alt="" /</td</a>
<a href= "javascript :;" <td height=36 valign="middle"
class="small_im g" onmouseover="sh owBigImage( 'imagescript.as p?
path=images/Runset.jpg&widt h=250','images/Runset.jpg','Po rtable stage
runset configuration' )"<img src="imagescrip t.asp?path=imag es/
Runset.jpg&widt h=36" border="0" alt="" /</td</a>
Because of this problem, the caption text does not display for this
first image record once the thumbnail images are moused over. You can
view this page example at
Comment