<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www./TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www./1999/xhtml" > <head runat="server"> <title>无标题页</title> <script type="text/javascript"> function showDaTu(src){ document.getElementById("ImageShowBig").src=src; } </script> </head> <body> <form id="form1" runat="server"> <br /> <asp:Image ID="ImageShowBig" runat="server" Width="300px" Height="300px" /> <asp:DataList ID="DataList1" runat="server" RepeatDirection="Horizontal"> <ItemTemplate> <asp:Image ID="ImageSub" width="165px" height="150px" ImageUrl=' <%# Eval("url").ToString()%>' style="filter:alpha(opacity=60);" onMouseOver="JavaScript:this.filters.alpha.opacity='100';showDaTu(this.src)" onMouseOut="JavaScript:this.filters.alpha.opacity='40';" runat="server" /> </ItemTemplate> </asp:DataList> </form> </body> </html> |
|