Jim,
You need to create a class with properties test1 and test2, make an array of
objects of this class and databind the grid to the array.
Eliyahu
"Jimmy" <> wrote in message
news:%...
> Hi
>
> Is it possible to build a datagrid with one column having test1 as a
> datasource and another column having test2 as a datasource:
> string[] test1 = new string[]{"1", "2", "3"};
>
> string[] test2 = new string[]{"John", "Marc", "Tom"};
>
>
>
> I just want a table that looks like this:
>
>
>
> 1 John
>
> 2 Marc
>
> 3 Tom
>
>
>
> Is this possible with a WebDatagrid or do i have to use another object?
>
>
>
> Regards
>
>
>
> Jim
>
>
|