在Datalist中使用LingButton,怎么实现鼠标放上去后,LingButton变色,已经写过样式了,但对LingButton没反应,怎么写呀

解决方案 »

  1.   

    LingButton 生成的html tag 是 <a>你怎么写的样式
      

  2.   

    <head runat="server">
        <title>欢迎</title>
        <style type="text/css">
            a:link
            {
                color: White;
                text-decoration: none;
            }
            a:visited
            {
                color: White;
                text-decoration: none;
            }
            a:hover
            {
                color: Gray;
                text-decoration: none;
            }
            a:active
            {
                color: White;
                text-decoration: none;
            }
        </style>
    </head>
    对在DateList中的LinkButton没反应