(dumb) question about repeater

  • Thread starter Thread starter Carlos Albert
  • Start date Start date
C

Carlos Albert

Hello,

I never worked using repeaters.
There is no way to work with it in design view? I've no problem working with
the source code, but I don't know how the databinds works using just HTML...

Any hint, link, example, whatever, will gonna be welcome =)
 
Do it in code.

MyRepeater.DataSource = myDataSet;
MyRepeater.DataBind();


is that what you mean?
KArl
 
In VS-2005 you can use designer to build SqlDataSource or ObjectDataSource,
then in designer to bind Repeater with SqlDataSource / ObjectDataSource.

However, in VS-2003 you have to use code to bind the repeater’s data source
with data source object (DataSet, DataTable, and so on).

HTH

Elton Wang
 
Yes... no... I was missing how it works. I found some examples. =)

Tnx!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top