R
Roshawn
Hi,
I am binding to a DataRowView object which contains approximately one row.
However, one of the columns of the row contains an array of author names. I
bind to it like this:
Me.lblAuthors.Text = row("Authors") 'row being the DataRowView object
When I run the code, I get no errors but the authors are not shown as
expected. The output is System.String[] for the label's text property.
I'd like the author names to be listed and separated by commas.
How do I properly bind to the array of authors using the DataRowView object?
Must I do some type of string conversion or something?
Thanks,
Roshawn
I am binding to a DataRowView object which contains approximately one row.
However, one of the columns of the row contains an array of author names. I
bind to it like this:
Me.lblAuthors.Text = row("Authors") 'row being the DataRowView object
When I run the code, I get no errors but the authors are not shown as
expected. The output is System.String[] for the label's text property.
I'd like the author names to be listed and separated by commas.
How do I properly bind to the array of authors using the DataRowView object?
Must I do some type of string conversion or something?
Thanks,
Roshawn