This question is locked. New answers and comments are not allowed.
                        
                        I really like the JustCode product but sometimes it reports peculiar things that I don't believe to be errors.  Here's one example:
In the layout code of a User Control I have a button defined as follows:
JustCode is reporting "Event handler not found". Yet in the User Control's code is this:
And, for the record, everything works fine. So why am I getting the error message?
Robert
                                In the layout code of a User Control I have a button defined as follows:
<asp:Button ID="buttonNewMuckpileOK" runat="server" Text="OK" Width="60" OnClick="buttonNewMuckpileOK_Click" />JustCode is reporting "Event handler not found". Yet in the User Control's code is this:
    protected void buttonNewMuckpileOK_Click(object sender, EventArgs e)<br>    {<br>      ModalDialogIsActive = false;<br>    }<br>And, for the record, everything works fine. So why am I getting the error message?
Robert


