If I wanted to add a new item to a <List> with the Data key name from a gridview how would I go about doing it?
Example.
List<myClass> myList = new List<myClass>();
myList.add(new myClass(*//The value of the data key name that has been clicked*));
A user might click on another item so it would be repeated etc etc.