forum

Home / DeveloperSection / Forums / ImageButton With Mouse Event Handlers Considered Not Well Formed

ImageButton With Mouse Event Handlers Considered Not Well Formed

Samuel Fernandes 1781 26-Aug-2014

ASP.NET says that the following ImageButton server tag is not well formed:

<asp:TableCell VerticalAlign="Top">
    <asp:ImageButton runat="server" ID="imgAdd" src="Images/add_plus_1.gif"
        onmouseout="this.src='Images/add_plus_1.gif'"
        onmouseover="this.src='Images/add_plus_2.gif'"
        onmousedown"this.src='Images/add_plus_3.gif'"
        CauseValidation="false" style="cursor: pointer"
        OnClientClick="Javascript:SL_AddBuilding()" />
</asp:TableCell>

I think all the mouse event attributes are legit, so I don't know what it's complaining about.


Updated on 26-Aug-2014

Can you answer this question?


Answer

1 Answers

Liked By