I am using asp.net mvc. I have used two list box in one of my views. I transfer desired items from left-hand-side list box to right-side list box. On a button click, i want to get the list box contents from right side list box. I don;t get in form collection. Can anyone please suggest how can I get it?

thanks, kapil

link|improve this question

53% accept rate
feedback

1 Answer

up vote 0 down vote accepted

The only values in the list box that are selected will appear in the form collection.

When you transfer to the second list box, I would add a hidden field and add the cvalues into there (with some delimiter between). Upon POST you could split the string value of this hidden value to find contents of right hand list box.

Alternatively, just prior to Submit (intercept with JavaScript), set all values in right hand list box to selected.

Kindness,

Dan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.