如何避免无效的回发或回调参数错误?

时间:2016-05-14 04:17:23

标签: c# asp.net listview

我在页面中有母版页和用户控件。页面上有listview。我试图使用itemcommand但它引发错误 - 无效的回发或回调参数。 (当我删除用户控件时,它开始工作)

                      <asp:ListView ID="lvProducts" runat="server"                                        OnItemDataBound="lvProducts_ItemDataBound"                    OnItemCommand="lvProducts_ItemCommand">;
                    <ItemTemplate>
                        <a href='<%# Eval("URL") %>'>
                            <div class="product-grid">
                                <div class="more-product"><span> </span></div>
                                <div class="product-img b-link-stripe b-animate-go  thickbox">

                                    <img src='<%# Eval("ImageURL") %>' class="img-responsive" alt="">
                                    <div class="b-wrapper">
                                        <h4 class="b-animate b-from-left  b-delay03">
                                            <a href='<%# Eval("URL") %>'> + </a>
                                        </h4>
                                    </div>
                                </div>

                                <div class="product-info simpleCart_shelfItem">
                                    <div class="product-info-cust prt_name">

                                        <h4><%# Eval("Heading") %></h4>

                                        <span class="item_price"><%# Eval("OfferPrice") %> </span>
                                        <div class="ofr">

                                            <p class="pric1"><del><%# Eval("MRP") %></del></p>

                                        </div>


                                        <asp:TextBox ID="txtQty" runat="server" CssClass="item_quantity" TextMode="Number" Visible="false"></asp:TextBox>
                                        <asp:Button ID="btnAddToCart" runat="server"   Text="+" CssClass="item_add items" CommandName="AddToCart" />
                                        <asp:LinkButton ID="a" runat="server" Text="test"></asp:LinkButton>
                                        <div class="clearfix"> </div>
                                    </div>
                                </div>
                            </div>
                        </a>
                    </ItemTemplate>
                </asp:ListView>

0 个答案:

没有答案