Hi,
I have this code for naming Sessions in aspx file:
if(kmax>1)
{
var l=2;
for (var t=8;t<kmax+8;t++)
{
var lineString&t = '<%= String.Join(",",(Session[String.Format("{0}",t)] as List<String>).ToArray()) %>';//here I want to have ex. var lineString8
var spl&l = lineString8.split(','); //and here spl2...
l++;
}
}
but I suppose it's not good, ex. t is underlined with red color and is not recognized in the current context.
Can anybody help me please how to do this?
Thanks
Go to the complete details ...