0
I want to assemble a list of strings and save it to a viewstate, and use it 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 on this list, but I need to manipulate it elsewhere on the page,?
it worked out vlw...
– War Lock