On the Default.aspx
On the Email2.aspx.cs
There is no value in the array3 in the Email2.aspx.cs
Code:
Dim i As Integer
Dim array1 As ArrayList = New ArrayList()
For i = 0 To cbBrand.Items.Count - 1
If cbBrand.Items(i).Selected Then
array1.Add(cbBrand.Items(i).Value)
End If
Next
Session("array2") = array1
Dim city As ArrayList = CType(Session.Item("array2"), ArrayList)
For i = 0 To city.Count - 1
Label1.Text += city(i)
Next
Code:
ArrayList array3 = (ArrayList)Session["array2"];
for (int i = 0; i < array3.Count; i++)
{
Label1.Text += array3[i];
}
Comment