checkboxlist - selected item sequence

  • Thread starter Thread starter yh
  • Start date Start date
Y

yh

is there a way to get the selected item sequence of the checkboxlist?
for example, user tick item4,item1,item2, i need to get 4-1-2, not 1-2-4.
thank you.
 
you can with javascript, the browser will not tell you. add onclick
hander to each checkbox, then recored the click order in a hidden field.

-- bruce (sqlwork.com)
 
Back
Top