Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I have two list boxes whose value is to be inserted in a single table
for one list box its fine I can do it like this

C#
foreach (ListItem listitem in ListBox1.Items)
{
   Save(listitem);
}


Bt for second one I do not want to Update the tabe..
I want to insert values from 2 list boxes in one shot!

how is it possible?
Thankx in Advance
Posted
Comments
visnumca123 18-Jun-13 9:56am    
Hi,

Merge those two listitems and do the save function which was needed

1 solution

using thread may help for your question I think. Search for how to use threading and doing 2 things at the same time
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900