一点table的空白处,这个按钮怎么总像是得到焦点的那种显示呢?
当然,它还不是真的得到了焦点,只是显示的感觉像得到焦点的样子而已,当然,我也不希望它得到焦点。如果是希望得到就简单了
有什么好的方法可以去掉么?<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>test</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Table runat="server" BorderWidth="1" Width="200" Height="200">
            <asp:TableRow runat="Server" >
                <asp:TableCell runat="server" >
                    <asp:button runat="server" Text="一点table的空白处,这个按钮怎么总像是得到焦点的那种显示呢?有什么好的方法可以去掉么?"/>
                </asp:TableCell>
            </asp:TableRow>
        </asp:Table>
    </div>
    </form>
</body>
</html>