C# javascript dynamic name for application variable -


i want create , access application variables using javascript in c# - want create name dynamically...

for (i = 1; <= 25; i++) {         var myappvariable = "id" + i.tostring()  if (application(['myappvariable']) == null) {   application(['myappvariable']) = 0;   } } 

is possible? i'm not sure put inside brackets address myappvariable.

thanks!


Comments