hi
i have a checkboxlist asp.net control in a web page. I want to loop thru the control and create a string with the value of all the selected checkboxes.
for e.g My checkboxlist control name is chkToClientList. The various checkboxes are added dynamically based on some query as below
checkbox 1
name : chkClient_0
checkbox 1
name : chkClient_1
The code that is generated by the .NET runtime is as below
how do i get the value "Microsoft Corporation","Microsoft Limited" using javascript?.
Thanks