Move Data from Multi Line to other Multi or Single Line
Hi, i am try to move a data from multi selectin box to a single or multi line. i can do that with single to single but problem is transfering froma multi line. i try to use this simple code as below;
- if(servis_personeller == null)
- {
- input.servisPersonel_Deluge = "";
- }
- else
- {
- x = Bakim_Personel_Formu[ID == input.servis_personeller];
- y = x.personel_adsoyad;
- input.servisPersonel_Deluge = y;
- }
But it only move last selection. i want to move all selection Like ; AAA,BBB,CCC
Please advise. Thanks.