I want to build a list of strings and save them to a viewstate, and use them later. Ex
List<string> listaNomes = new List<string>();
foreach(var algo in TesteList)
{
listaNomes.add(algo.id);
//salve essa lista em ViewState
}
I'm saving several strings in this list, but need to manipulate it elsewhere on the page, like saving in ViewState and manipulating later?