array of session variables

kunal.kb

Member
Joined
Sep 8, 2005
Messages
21
Programming Experience
Beginner
I want to pass 3 parameters as session but the main problem is that the value of the session variable and their names are stored in to array


'TASK PARAMETERS
Dim arr As String = CType(oNavValue.Tables(0).Rows(0) ("task_param"), String)
Dim arr2() As String = arr.Split("$")
'SESSION VARIABLES NAME
Dim arr1 As String = CType(oNavValue.Tables(0).Rows(0)("session"), String)
Dim arr3() As String = arr1.Split("$")


array "arr2" contains the values for the session variables in array "arr3"

is it possible?
if yes then plz tell me how?

if not then tell me some other way to do this!!!

thanks
 
Back
Top