Posted on: 9/15/2015 3:30:24 PM | Views : 798

Hi,
I am setting an array name and trying to obtain the value, here is a simple example, but the value returned is 'a' which I'm not sure why this does not work as it should be '1_po'
Session("sLang") = "lgA" Dim atGridlgA As Array = {"1_po", "2_po", "3_po", "4_po", "5_po", "6_po", "7_po"} Dim atGridlgB As Array = {"1_ge", "2_ge", "3_ge", "4_ge", "5_ge", "6_ge", "7_ge"} Dim atGridlgC As Array = {"1_fr", "2_fr", "3_fr", "4_fr", "5_fr", "6_fr", "7_fr"} Dim atGridlgD As Array = {"1_it", "2_it", "3_it", "4_it", "5_it", "6_it", "7_it"} Dim gvSelectedLang As String = "atGrid" & Session("sLang") gvGrid.Columns( ...

Go to the complete details ...