views:

17

answers:

1

Hi!

I'm designing a data driven website, the content for which is displayed mostly with Repeater controls.

I'm not sure, though, how to present the content that won't be repeated (such as articles). I had thought about using Labels and creating a DataSet when the page loads and populate the Labels on the page with columns from the DataSet...

Any ideas?

+1  A: 

To create "single-record" data-bound control you can use either FormView or DetailsView controls

Dewfy
those the best ways to do it? It seems a little more involved to get the look and feel with those controls that I want (at least compared to using css)
Logan Young
Dewfy