I'm trying to limited many network round-trips call from the ASP.NET.
What is the best method to insert these into the table:
Customer Order:
items,qty,price,desc:
102, 1, 250, 'Sql books'
105, 2, 10, 'Book binder'
106, 1, 5, 'Special Pen'
110, 5, 2, 'Paper Box'
I looking into Array and pass the values to SQL, but looking for everyone input before I go on futher.
thanks