0

使用中继器,它显示一个列表,其中包括一个复选框字段。单击复选框时,我希望该函数运行并显示标签....尝试调试它但似乎无法启动,使用断点不会获取该函数

//后面的代码

 protected void chkMyCheck_CheckedChanged(object sender, EventArgs e)
    {
        label.Text = "Button Clicked";
    }

aspx:

<asp:Repeater id="rptSelectedUtilities" runat="server">
            <HeaderTemplate>
                <table class="detailstable FadeOutOnEdit">
                    <tr>   
                        <th style="width:200px;">Utility</th>    
                        <th style="width:200px;">Contacted</th>   
                        <th style="width:200px;">Comment</th>    
                    </tr>
            </HeaderTemplate>
            <ItemTemplate>
                    <tr>
                        <th style="width:200px;"><%# Eval("Name") %></th>
                        <th style="width:200px;"><asp:CheckBox ID="chkMyCheck" AutoPostBack="true" runat="server" OnCheckedChanged="chkMyCheck_CheckedChanged" Checked='<%# Convert.ToBoolean(Eval("Checked")) %>'/></th>   
                        <th style="width:200px;"><%# Eval("Comment") %></th>  
                    </tr>
            </ItemTemplate>
            <FooterTemplate>
                </table>
            </FooterTemplate>
        </asp:Repeater>

        <asp:Label id="labelTableEmpty" runat="server" Text="There are currently no items in this table." />

        <asp:Label ID ="label" runat="server" />

关于为什么单击复选框时代码不进入 chkMyCheck_CheckedChanged 函数的任何想法?,页面确实重新刷新,因此它会自动回发

4

1 回答 1

1

您是否在 !IsPostBack 中绑定中继器???

为了

void page_load()
{

if(!IsPostBack)
{
//BindRepeater method??? 
}
}

查看

于 2013-03-08T14:43:15.447 回答