Users Pricing

forum

home / developersection / forums / imagebutton with mouse event handlers considered not well formed

ImageButton With Mouse Event Handlers Considered Not Well Formed

Samuel Fernandes 2089 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.


1 Answers