Posted on: 3/5/2014 10:16:48 AM | Views : 746

I have created an array like this
Standard sqlconnection code +
  Dim cmd As New SqlCommand("select * from Table1", con)         cmd.CommandType = CommandType.Text         Dim da As New SqlDataAdapter(cmd)         Dim ds As New DataSet()         da.Fill(ds)         Dim Arr As New ArrayList()         For Each dr As DataRow In ds.Tables(0).Rows             Arr.Add(dr)         Next         
I want to display this Array Arr on the page so I use this
        Label1.Text = Arr.ToString
However, it shows ...

Go to the complete details ...