1
 private void BindDataList()
{
        int userId = Convert.ToInt32(ProfileInfo.GetUserID());
        DataList1.DataSource = CatalogAccess.GetAddressByUserID(userId);
        DataList1.DataBind();
        foreach (DataListItem item in DataList1.Items)
        {
            Label lbl = (Label)item.FindControl("lbl");
            lbl.Text = "myLabel";
        }
    }

    protected void DataList1_EditCommand(object source, DataListCommandEventArgs e)
    {
        int userId = Convert.ToInt32(ProfileInfo.GetUserID());        
        DataList1.EditItemIndex = e.Item.ItemIndex;
        DataList1.DataSource = CatalogAccess.GetAddressByUserID(userId);
        DataList1.DataBind();
        Label lbl = (Label)e.Item.FindControl("lbl") as Label;
        lbl.Text = "edit mode";
    }

<asp:DataList ID="DataList1" runat="server" oneditcommand="DataList1_EditCommand" >
        <ItemTemplate>
                    <asp:Label ID="lblAddressID" runat="server" Text='<%# Bind("addressID") %>'/>
                    <asp:Label ID="lbl" runat="server" />
                    <asp:Button runat="Server" ID="cmdEdit" CommandName="Edit" Text="Edit"/> 
            </ItemTemplate>            
            <EditItemTemplate>  
                    <asp:TextBox ID="txtAddressID" runat="server" Text='<%# Bind("addressID") %>' BackColor="#FFFF66" />        
                    <asp:Label ID="lbl" runat="server"/>
                    <asp:Button runat="Server" ID="cmdUpdate" CommandName="Update" Text="Update" />
                    <asp:Button runat="Server" ID="cmdCancel" CommandName="Cancel" Text="Cancel"/> 
            </EditItemTemplate>
       </asp:DataList>
4

1 回答 1

1

第 1 步:在某处绑定数据

第二步:处理 OnItemDataBound 事件,在这里找到你的控件,类似下面...

  protected void DataList1__ItemDataBound(Object sender, DataListItemEventArgs e)
  {
    if (e.Item.ItemType == ListItemType.EditItem)
    {
        Label lbl = (Label)e.Item.FindControl("lbl");
        lbl.Text = "edit mode";
    }
  }

有关此事件的更多信息,请查看MSDN 示例。您必须检查 ItemType。在这种情况下,它处于编辑模式,否则您检查列表项或替代项等。

于 2009-07-05T18:32:46.477 回答