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>
答案 0 :(得分:1)
第1步:在某处绑定数据
第2步:处理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 example。您必须检查ItemType。在这种情况下,它处于编辑模式,否则您将检查列表项或替代项等。