如题

解决方案 »

  1.   

    <td onmouseover="this.style.backgroundColor='666666';" onmouseout="this.style.backgroundColor='ffffff';"
      

  2.   

    http://www.cnblogs.com/jhtchina/articles/115543.html
      

  3.   

    ImageButton鼠标效果:
    你可以添加个imagebutton控件如下<asp:ImageButton id="ImageButton1" runat="server" Height="36px" Width="130px" ImageUrl="images/plmm.gif"></asp:ImageButton>然后在page_load事件里写注册JS代码ImageButton1.Attributes.Add("onmousemove", "javascript:document.all.ImageButton1.src='images/plmm1.jpg';")
            ImageButton1.Attributes.Add("onmouseout", "javascript:document.all.ImageButton1.src='images/plmm.gif';")这样就可以了!