aspx_professional thread: Saving client changes in server controls.
Perhaps you can handle the click event for the buttons on the server in a
postback.
"Lou Feicht" <lfeicht@f...> wrote in message
news:108782@a..._professional...
>
> I have two list boxes side by side. Users can move items bewteen the boxes
> by clicking on two arrows pointing right and left.
> After users make their changes to the list items, I submit back to the
> database. Easily done with dhtml/asp.
>
> I liked the ability to loop throught items in the listboxes in .NET, so I
> tried to do the same thing with .NET. I used databinding with the
> listboxes. The listboxes are like asp:listbox...runat=server.
>
> Problem is that client side changes in the listboxes made through
> javascript are lost when the form is posted.
>
> Is there a way to get my client side changes in the list box controls back
> to the server, other than manipulating hidden form elements or arrays
> using traditional dhtml methods?
>
>