Can anyone please tel me an example for how to bind the data with the Collections and Lists. I know how to bind the data with databound controls. But, binding with the collection and Lists sounds little bit tougher.
Thanks.
Regards,
Naren.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use Collection.Add or Collection.AddRange where Collection can be any of collection like ArrayList in your case to add your data to the collection.
There is no binding involved here.
Binding is done in between data and controls.
Collections are used for collecting the data and no binding is involved.