I am creating a webpage in which I have a series of pairs ListBoxes
. In each pair there is a source (containing many options) in which you can then select an option (or multiple) and add it to the second listbox.
I have some permanent tables created which contain the static members for the source listboxes; however, I would like to use a "SELECT * INTO #tempsrc1 FROM src1
" and then bind the #tempsrc1
to ListBox. From there a #tempdst1 would be created for the destination ListBox binding. Then any selections would just be moved back and forth from there accordingly.
While binding to permanent databases is easy enough, I am having trouble (if its even possible) binding to the #tempdb setup for the rest of this, I am quite new to SQL and do not have a solid understanding of the architecture.