Creating multiple content display output from database

  • Thread starter Thread starter robin9876
  • Start date Start date
R

robin9876

In an asp.net (VB) web page I have created a HTML table that has some
server side labels which has information populated to at runtime from
code. This works for when there is only one recorded returned form the
database.

When two or more records are returned how can I create an additional
copy of this output with the data from the other records?
 
Hmmm, what is it that you are doing exactly? If what I am thinking it
correct, you are using a database to fill in these labels for
information. My suggestion is to read up on how to use a DataView or
FormView object. They are MUCH better to use than just labels and a
table.

Kivak Wolf
 
Or you can look into using Repeaters which copies and fills a template for
each record.
 
I'll have to take a look at repeaters sometime. They sound fun but I've
never used them. =D

Kivak Wolf
 

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