我的应用程序中有一个数据列表,其headertemplate有一个标签。现在我需要从codebehind访问标签。我怎么能这样做..
CODE :
<asp:DataList ID="Dlitems" runat="server" RepeatDirection="Horizontal" RepeatColumns="4"
CellPadding="0" CellSpacing="15" OnItemCommand="Dlitems_ItemCommand">
<HeaderTemplate>
<asp:Label ID="lblcat" runat="server" Text="" />
</HeaderTemplate>
注意:我需要从headertemplate访问标签lblcat
..
答案 0 :(得分:0)
将OnItemDataBound
事件附加到您的数据列表
<asp:DataList ID="Dlitems" runat="server" RepeatDirection="Horizontal" RepeatColumns="4"
CellPadding="0" CellSpacing="15" OnItemCommand="Dlitems_ItemCommand"
OnItemDataBound="Dlitems_ItemDataBound">
...
并像这样定义
protected void Dlitems_ItemDataBound(Object sender, DataListItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Header)
{
Label lblCat = (Label)e.Item.FindControl("lblcat");
lblCat.Text = "Changed!";
}
}
答案 1 :(得分:0)
上面的代码是正确的,但您需要将代码添加回代码并正确定义,因为用户没有点击任何按钮或链接,所以我们不想显示Changed,除非用户点击链接或按钮。如下:
protected void dlData_ItemDataBound(object sender, DataListItemEventArgs e)
{
try
{
if (Page.IsPostBack)
{
if (e.Item.ItemType == ListItemType.Header)
{
Label lblCat = (Label)e.Item.FindControl("lblcat");
lblCat.Text = "Changed!";
}
}
}
catch (Exception ex)
{
throw;
}
}
快乐编程