I'm trying to find a slick way to do the following:
- query the database for several numeric values (select f1, f2,
f3... from table1 where...)
- convert them into a comma separated string ie.(4,2,9,4,4,10,1800)
- assign the string to the value of a radio button control
- update seven labels with each of the numbers when the radio button
is clicked (this needs to be done on the client side)
I could do this by concatenating all of the values with a loop, then
use a similar loop on the client side and use the innertext??
property of the labels. However, I'm hoping that there are some
neat string functions that would be able to help.