hi all,
I'm hitting a impasse trying to convert ASP code to ASP.NET, and one of the line that central of the attention is:
The line basically means: a display thumpnail faded in when mouse over and will be opened to a bigger image in a different window that was pre-seted Width and Height when clicked.
The best I came up so far is:
Basically, the code will display the thumpnail (w/o fade-in nor fade-out); however, it does open to a new window that was sized as told (by JScript).
Could someone show me how to get the part when the thumpnail does the fadding again with ASP.NET.
Thanks!
I'm hitting a impasse trying to convert ASP code to ASP.NET, and one of the line that central of the attention is:
Code:
<a href="label_sample.aspx?img=Big-O-Tires-Label-BigSample" onClick="return popup(this, "gloss")" target="_blank"><img src="images/Big-O-Tires-Label-Sample.jpg" border="0" style="filter:alpha(opacity=70);-moz-opacity:0.7;padding-bottom:10px" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)" runat="server" /></a>
The line basically means: a display thumpnail faded in when mouse over and will be opened to a bigger image in a different window that was pre-seted Width and Height when clicked.
The best I came up so far is:
Code:
<asp:HyperLink CssClass="fad_img" ImageUrl="images/Big-O-Tires-Label-Sample.jpg" NavigateUrl="label_sample.aspx?img=Big-O-Tires-Label-BigSample" runat="server" onClick="return popup(this, 'gloss')" onMouseover="makevisible(this,0)" onMouseout="makevisible(this,1)"></asp:HyperLink>
Basically, the code will display the thumpnail (w/o fade-in nor fade-out); however, it does open to a new window that was sized as told (by JScript).
Could someone show me how to get the part when the thumpnail does the fadding again with ASP.NET.
Thanks!