Hi,
Can anybody help me please how to take element by element of a List<String> list when it is sent to another web form as session?
For example the list looks like
List={.71 100% 42% 23%, .34 96% 88%, .8 87% 23%}
so I have
var lineString = '<%= Session["3"] %>';
var spl1 = lineString.split(",");
for (i = 0; i < lineString.length; i++)
{
and here I want to take separately ex el1[0]=.71 el[1]=100% el[2]=42% and so on
}
Can anybody help me please how to do this?
Thanks
Go to the complete details ...