Good afternoon,
I am seeking some help with a mouse over effect on an image... I have images that are 100x100 I would like to be able to mouse over them and it pull up a window showing that image in a larger format 400x400
I wanted to use this code here
As you can see it is JavaScript and PHP. However the site I am working with is .aspx ASP.NET 2.0 via IIS.
I had asked if I could get the PHP to be read with in the .aspx extension and I got replies along the lines of why use three different codes? Thinking about it now that makes sense but the reason I was trying to do that is because I know how to use PHP...
Is there anyway anyone could tell me how to do a mouse over effect in ASP? Or maybe how I could enable PHP to be read?
Thank you,
Chris
I am seeking some help with a mouse over effect on an image... I have images that are 100x100 I would like to be able to mouse over them and it pull up a window showing that image in a larger format 400x400
I wanted to use this code here
Code:
<?php $filein = 'help.html'; // ---------------------------------------- // Read help file into variable $help_text // ---------------------------------------- $help_text = ""; if ($fd = fopen ($filein, "r")) { $help_text = fread($fd, filesize ($filein)); fclose ($fd); } if ($help_text == '') $help_text = 'No help text available'; $help_text=htmlentities($help_text); $help_text=str_replace(array("\n", "\r"), array("",""), $help_text); echo '<a align="right" href="#" onmouseout="javascript:hideTooltip()" onmouseover="javascript:showTooltip(event,\''.$help_text.'\');return false"><img src="http://test.valoriprecast.com/images/ProductImages/Colors/thumbs/Blanco Smooth.jpg" border="0"></a>'; ?>
I had asked if I could get the PHP to be read with in the .aspx extension and I got replies along the lines of why use three different codes? Thinking about it now that makes sense but the reason I was trying to do that is because I know how to use PHP...
Is there anyway anyone could tell me how to do a mouse over effect in ASP? Or maybe how I could enable PHP to be read?
Thank you,
Chris
Comment