列表视图,发送参数到方法

时间:2011-04-03 10:11:15

标签: c# asp.net listview parameters

我有多行的列表视图,在每行我都有文本框,其中是购物车和刷新按钮中的项目数。因此,如果有人更改了项目数并点击了更新,我想在cookie和db中更改它。我使用CommandArgument,其中1个参数是tableProduct和tableCart之间的表中行的ID,第二个我想发送文本框的当前值,其中有多少项用户想要购买,但我不知道如何添加。你可以帮帮我吗?

<asp:TextBox runat="server" id="countInCart" Text='<%# Eval("countInCart") %>' /><asp:ImageButton ID="ImageButton1" runat="server" ImageAlign="AbsBottom" ImageUrl="~/Static/Img/inp-order-refresh.png"  OnCommand="updateClick" CommandArgument='<%# Eval("id") + ";" + **here i want add value of countInCart, but I dont know how** %>' />

1 个答案:

答案 0 :(得分:0)