Still the same result.
Actually, I got 2 tables.
1. Reservation (ReservationID, CustomerID, Reserved_Date, Discount)
2. ReservationDetails (ReservationDetailsID, ReservationID, ProductID, Quantity, Status)
When I add the items to list, the code will insert those items into these 2 tables and set quantity = 0 and status = temp.
Then, when I click view reservation list page, it will display all items added into list under that customerID (session).
So, all quantity at this time is 0 and user will update that quantity and lastly update as batch (which is my initial problem).
Hope this is much clearer. So, how do update as batch here? I will appreciate all help.