[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.4

Error: Collection was modified; enumeration operation may not execute.

Asked by bullrout in Programming for ASP.NET

Tags: enumeration, may, operation, collection, execute

Hi There,

I'm getting an error when I try to update multiple rows from shopping cart. When I have one row it works fine but when I have multiple rows it gives me the error "Collection was modified; enumeration operation may not execute. " after the first iteration of the loop.

Could someone help me out with the syntax please?

Sean

!--- code

 Sub ChangeQuantity(ByVal send As Object, ByVal E As EventArgs)
        Dim i As Int32 = 0
        Dim strCode As String = ""
        Dim intusercode As Int32 = 0
        ' For i = 0 To cart.Items.Count - 1
        For Each dataItem As RepeaterItem In cart.Items
            Dim ItemQuantity As TextBox = (CType(dataItem.FindControl("ItemQuantity"), TextBox))
            Dim txtcode As TextBox = (CType(dataItem.FindControl("txtcode"), TextBox))
            Dim txtitemnumber As Label = (CType(dataItem.FindControl("lblPitemnumber"), Label))
            Dim lblprice As Label = (CType(dataItem.FindControl("lblprice"), Label))
            If Not txtcode.Text = "" Then
                strCode = GetValidCode(txtcode)
                If strCode Is Nothing Then 'if the user does not have a valid code then call the function
                    Call UpdateCart(ItemQuantity, txtcode, txtitemnumber, lblprice, intusercode)
                Else 'if the user has a valid code then look it up
                    Session("THECODE") = strCode
                    intusercode = 1
                    Call GetDistributorPrice(ItemQuantity, txtcode, txtitemnumber, lblprice, intusercode)
                End If
            Else
                'if the code is nothing then call the function
                Call UpdateCart(ItemQuantity, txtcode, txtitemnumber, lblprice, intusercode)
            End If
            'Exit For
        Next
    End Sub


!--- repeater code

<asp:repeater id="cart" runat="server">
                        <HeaderTemplate>
                              <table border="1" cellpadding="3" style="background-color:#F6F6F6; border-collapse:collapse">
                                    <tr>
                                          <th>
                                                Number</th>
                                          <th>
                                                Title</th>
                                          <th>
                                                Price</th>
                                          <th>
                                                Quantity</th>
                                          <th>
                                                MTA / Reseller Code</th>
                                          <th>
                                                Amount</th>
                                          <th>
                                                &nbsp;
                                          </th>
                                    </tr>
                        </HeaderTemplate>
                        <ItemTemplate>
                              <tr>
                                    <td align="center">Item Number:
                                          <%# Container.DataItem("Pitemnumber") %>
                                          <asp:Label id="lblPitemnumber" runat="server" ReadOnly="True" Visible="false" Text='<%# Container.DataItem("Pitemnumber") %>'>
                                          </asp:Label>
                                    </td>
                                    <td align="left">Item Name:
                                          <asp:Label id="lblPitemname" runat="server" ReadOnly="True" Visible="true" Text='<%# Container.DataItem("Pname") %>'>
                                          </asp:Label>
                                    </td>
                                    <td align="right">Item Price:
                                          <asp:Label id="lblprice" runat="server" ReadOnly="True" Visible="true" Text='<%# Container.DataItem("Pprice") %>'>
                                          </asp:Label>
                                          <asp:Label id="lblPhandling" runat="server" ReadOnly="True" Visible="False" Text='<%# Container.DataItem("Phandling") %>'>
                                          </asp:Label>
                                    </td>
                                    <td align="center">
                                          <asp:TextBox id="ItemQuantity" runat="server" Text='<%# Container.DataItem("Pitemquantity") %>' MaxLength="2" Style="width:30px; text-align:right"/>
                                    </td>
                                    <td>
                                          <asp:TextBox id="txtcode" runat="server" MaxLength="11" Style="width:100px; text-align:right" /></td>
                                    <td align="right"><b><%# FormatNumber(GetItemAmount(Container.DataItem("Pprice"), Container.DataItem("pitemquantity")), 2) %></b></td>
                        </ItemTemplate>
                        <FooterTemplate>
                              <tr>
                                    <th align="right" colspan="4">
                                          Postage & Handling:
                                    </th>
                                    <td align="right"><b><%# FormatCurrency(GetOrderShipping()) %></b></td>
                              </tr>
                              <tr>
                                    <th align="right" colspan="4">
                                          Order Total:
                                    </th>
                                    <td align="right"><b><%# FormatCurrency(GetOrderTotal()) %></b></td>
                                    <td>
                                          <asp:Button Text="Update" class="small" runat="server" onclick="ChangeQuantity" ID="Button1"
                                                NAME="Button2" />
                                    </td>
                              </tr>
                        </FooterTemplate>
                  </asp:repeater>
[+][-]10/05/05 11:39 PM, ID: 15028405Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Programming for ASP.NET
Tags: enumeration, may, operation, collection, execute
Sign Up Now!
Solution Provided By: tovvenki
Participating Experts: 2
Solution Grade: A
 
[+][-]10/05/05 10:58 PM, ID: 15028265Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/06/05 12:13 AM, ID: 15028505Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/06/05 12:29 AM, ID: 15028541Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]10/06/05 12:47 AM, ID: 15028610Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92