我有一个嵌套在更新面板内的按钮,该面板绑定了一个 CommandArgument。这会调用一个方法来更新 UpdatePanel 中不包含的区域中的一些标签和文本。如果我注释掉更新面板,按钮可以正常工作,所以我知道它来自更新面板。有谁知道我怎么能通过这个?
protected void Button_Command(object sender, System.Web.UI.WebControls.CommandEventArgs e) { //在此处更新文本框和标签 }
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div>
<asp:DataList ID="dListItems" runat="server" DataKeyField="PRODUCT_ID" RepeatColumns="4"
RepeatDirection="Horizontal" ShowFooter="False" ShowHeader="False" CellPadding="4">
<HeaderTemplate>
No Record Found....!
</HeaderTemplate>
<ItemTemplate>
<asp:Button ID="Button" runat="server" Text="Add to Cart"
CommandArgument='<%# Eval("Id") %>' CausesValidation="False"
CssClass="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"
OnCommand="Button_Command"
/></span></span></p>
</ItemTemplate>
</asp:DataList>
</div>
</td>
</tr>
</table>
</div>
</ContentTemplate>