Click here to Skip to main content
15,912,578 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a list which have a column which is lookupmulti type. Ihave to set values to the column.
Parent List

Employee ID Title
123 1
456 2
789 3

Child List (Which has the look up column)

EmpID Title
123;789 1

I have to update the child list's "EmpID" column with a list of string which is coming in request
the list contains two string values - 123,456
list<string> lst=new list<string>();
lst.add("123");
lst.add("456");

I have to update the information in the child list's "EmpID" column. How can I do this? Please suggest. A code snippet will be helpful.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900