Error on ItemDataBound on repeater

3.6k Views Asked by At

I am working with repeaters in asp.net and keep getting this error when I try to debug. I have multiple repeaters in this application already and those repeaters are all working correctly with no problem. when I went to add this one to the top of the page this error appears. The error does not appear when I get rid of the on item data bound section. I do have a method set up in c# with the correct name for this.

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS1061: 'ASP.default_aspx' does not contain a definition for 'rptCert_ItemDataBound' and no extension method 'rptCert_ItemDataBound' accepting a first argument of type 'ASP.default_aspx' could be found (are you missing a using directive or an assembly reference?)

Source Error:

Line 55: 
Line 56:         <b>Certifications</b><br />
Line 57:         <asp:Repeater ID="rptCert" runat="server" 
Line 58:             onitemdatabound="rptCert_ItemDataBound">
Line 59:             <HeaderTemplate>



<asp:Repeater ID="rptCert" runat="server" OnItemDataBound="rptCert_ItemDataBound">
        <HeaderTemplate>
            <table>
                <tr>
                    <td width="200px"></td>
                    <td width="30px"></td>
                </tr>
        </HeaderTemplate>
        <ItemTemplate>
            <tr>
                <td>
                    <asp:Label runat="server" ID="lblAcct"></asp:Label>
                </td>
                <td>
                    <asp:TextBox runat="server" ID="txtCert"></asp:TextBox>
                </td>
            </tr>
        </ItemTemplate>
        <FooterTemplate>
            </table>
        </FooterTemplate>
    </asp:Repeater>
2

There are 2 best solutions below

0
On

I called one of my friends on my phone and he said thinks I was stuck in an infinite loop. I stopped the ASP.NET Developer Server by right-clicking on the icon on the lower right side of my screen. After stopping that it began to run correctly. Pulling the data and hitting the event code.

9
On

You need to define the function rptCert_ItemDataBound

Did you delete your code behind or not include that function -- maybe you have an error and it does not compile?


Because your header says this:

Inherits="Interaction_Experience_Update._Default"

The object at Inherits="Interaction_Experience_Update._Default" has to have a function with this template:

void rptCert_ItemDataBound(Object Sender, RepeaterItemEventArgs e)
  {}