1

我在中继器上有这些复选框:

<asp:Repeater id="repeaterCategories" runat="server">
    <ItemTemplate>
        ...

        <asp:CheckBox ID="chbCategoria" Text="My Label" runat="server" />

        ...
    </ItemTemplate>
</asp:Repeater>

每个复选框都必须与从数据库中获取的页面 ID 一致(每个 repeaterCategories 项都有其唯一的 ID,因此只有一个)。

我该如何设置?因此,在回发时,我检查了哪些 CheckBox 控件被选中并获得了 ID。

4

2 回答 2

2

你能尝试像这样添加自定义属性吗

protected void repeaterCategories_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
    {
        CheckBox chk = e.Item.FindControl("chbCategoria") as CheckBox ;
        chk.Attributes.Add("PageID", DataBinder.Eval(e.Item.DataItem, "DB_FIELD").ToString());
    }
}
于 2013-04-23T13:59:28.970 回答
0

用户控制页面:

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="WebUserControl.ascx.cs" Inherits="WebUserControl" %>
<asp:CheckBox id ="MyCheckBox" runat="server"/>

后面的代码:

using System;

public partial class WebUserControl : System.Web.UI.UserControl
{
    private string _myProperty;
    public string MyProperty 
    {
        get { return this._myProperty; }
        set { this._myProperty = value; }
    }

    public bool IsChecked
    {
        get 
        {
            return this.MyCheckBox.Checked;
        }
    }

    protected void Page_Load(object sender, EventArgs e)
    {

    }
}

在您的转发器页面:

<%@ Register Src="~/WebUserControl.ascx" TagPrefix="uc1" TagName="WebUserControl" %>

中继器内部:

<asp:Repeater id="repeaterCategories" runat="server">
    <ItemTemplate>
        ...

        <uc1:WebUserControl runat="server" ID="WebUserControl" MyProperty="My_ID_Value" />

        ...
    </ItemTemplate>
</asp:Repeater>

您可以在 Web 用户控件上添加任意数量的属性。

于 2013-04-23T13:49:29.057 回答