Array in VB.Net
-
I have two buttons event in my vb.net code. I wish to pass a array from one button1.click event to button2.click event. How can i pass the array value? I tried calling the array but the valus turns out to be zero when it was passed from one procedure to another. Please help. Thank you.
-
I have two buttons event in my vb.net code. I wish to pass a array from one button1.click event to button2.click event. How can i pass the array value? I tried calling the array but the valus turns out to be zero when it was passed from one procedure to another. Please help. Thank you.
Use session variables to pass array across the events
Thomas
-
Use session variables to pass array across the events
Thomas
-
Can you show me how to use session variable to pass the array? The session variable will pass the array address or will session each elements in the array? Thanks in advance
Dim arr() As Object Session("arr") = arr
Thomas