datalist problem

  • Thread starter Thread starter Ilann
  • Start date Start date
I

Ilann

Hi,

I'm using a datalist control to display all data from a table, upon
execution the datalist contains the right number of rows but the content is
the same, it displays only the first line of my table...

any idea?

--Ilan
 
Pretty straightforward:

I have a data adapter that contains a "select * from table1" statement I
generate the dataset from the data adapter Then I use the normal syntax
Here's Is the code for the page_load event:

"this.sqlDataAdapter3.Fill(this.dataSet51);

this.DataList1.DataBind();"



Again all the rows of the datalist contains the first row of my table...

I'm doing the same thing to bind to a datagrid and it's working perfectly...

I'm stuck

--Ilann
 
Back
Top