I am implenting some functionality on asp.net page such that: There are to listboxes side by side, left one is prepopulated and right one is empty. Besides left listbox there is add button and besides right there is remove button. I have written javascript code such that on Add button click the selected listItems from left listbox are moved to right listbox and vice-versa.
It is as follows:
When I submit the form, in code-behind I am not able to retrive the newly moved values from right ListBox (I know its not posssible in this way). How can I access the changes made with the javascript changes to the listboxes in the codebehind.
Any help appreciated.