<asp:button onmouseover="this.style.cursor='hand' > not working
<asp:button id="Button9" onmouseover="this.style.cursor='hand' runat="server"
Width="119px"></asp:label>
I am getting error at onmouseover.
But it is working fine for HTML element <INPUT>.
Why it is not working for <asp:button> ?
Is it necessary to import any namespace?
Can anybody give code?
Re: <asp:button onmouseover="this.style.cursor='hand' > not working
> <asp:button id="Button9" onmouseover="this.style.cursor='hand'
> runat="server" Width="119px" />
> I am getting error at onmouseover.
Aruna: You're missing the closing double-quote on your onmouseover
attribute.
---
Phil Weber
Re: <asp:button onmouseover="this.style.cursor='hand' > not working
"Phil Weber" <pweber@nospam.fawcette.com> wrote:
> > <asp:button id="Button9" onmouseover="this.style.cursor='hand'
> > runat="server" Width="119px" />
> > I am getting error at onmouseover.
>
>Aruna: You're missing the closing double-quote on your onmouseover
>attribute.
>---
>Phil Weber
>
>
Hi Phil,
Button on a server hasn't "onmouseover" event as far as other mouse events.
Use simple <button idid="Button9" onmouseover="this.style.cursor='hand'
Width="119px" />