Как получить доступ к кнопке во внутреннем списке данных?
Комментарии DataList
(Внешний) и ответы DataList
(Внутренний).
В то время как во внутреннем DataList
E сть LinkButton
который получает текст от TextBox
,
Как я могу получить доступ Add
событие этого LinkButton
?
.aspx код
<asp:DataList ID="dlComments" runat="server">
<asp:DataList ID="dlReplies" runat="server">
<asp:TextBox ID="txtReply" TextMode="MultiLine" Rows="3" Width="100%" runat="server"></asp:TextBox>
<asp:LinkButton ID="lbEdit" CommandName="Add" runat="server">Edit</asp:LinkButton>
</asp:DataList>
</asp:DataList>
2 ответа
Решение
Вы можете добавить OnItemCommand
во вложенный DataList.
<asp:DataList ID="dlReplies" runat="server" OnItemCommand="dlReplies_ItemCommand">
А потом в коде позади
protected void dlReplies_ItemCommand(object source, DataListCommandEventArgs e)
{
//check for the correct commandname
if (e.CommandName == "Add")
{
//use findcontrol to find the textbox and cast it back to one
TextBox tb = e.Item.FindControl("txtReply") as TextBox;
Label1.Text = tb.Text;
}
}
Добавлять commandName="click"
на вас кнопка ссылки.
private void DataList1_ItemCreated(object sender, System.Web.UI.WebControls.DataListItemEventArgs e) {
if ((e.Item.ItemType == ListItemType.AlternatingItem)
|| (e.Item.ItemType == ListItemType.Item)) {
DataList dtl2 = (DataList)(e.Item.FindControl("dlReplies"));
dtl2.ItemCommand += new System.EventHandler(this.dtl2_ItemCommand);
}
}
protected void dtl2_ItemCommand(object sender, System.Web.UI.WebControls.DataListCommandEventArgs e) {
if (e.CommandName == "click") {
// 'do what you want here
}
}