I have a page that contains a listview and i created another page as a form and i have 3 textboxes, i want to add a text in each of these textboxes and enivate to the listview that is on another page
Loading
I have a page that contains a listview and i created another page as a form and i have 3 textboxes, i want to add a text in each of these textboxes and enivate to the listview that is on another page
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Yazhini MPPosted Dec 9, 2021, 10:43 AM
Sample example for how to add to a list
(); test = new List(); initialList = new List(); list ToAdd = new List();
var list = new List
list.Add("Hello");
//Declaring that its a list
List
test.Add("Hello")
List
List
initialList.AddRange(listToAdd);
Srinivasan RamamoorthiPosted Dec 9, 2021, 4:32 AM