2011-04-03 59 views
0

我有多行的列表視圖,並且在每行中我有文本框,其中是購物車和刷新按鈕中的項目數。所以如果有人更改了一些項目並點擊更新,我想在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** %>' /> 

回答