Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Repeater header question

Status
Not open for further replies.

vincentw56

IS-IT--Management
Oct 10, 2002
47
US
I am trying to build a product page. The page lists all the products and I want to have the category in the hearder of the repeater control. Since this page queries from a database, the header will change. I have everything working except getting the header to automatically display the category name. What is the simplist way to do this? I am using Access as the database. Thanks.
 
vin: it would probably take on the form:

<HEADERTEMPLATE>
<table>
<tbody>
<tr>
<td>
Categoy1</td>
<td>
Category2</td>
</tr>
</tbody>
</table>
</HEADERTEMPLATE>

Take at look at threads:

thread855-292236

thread855-741089

...post back...let us know how it is going...

Also, if you haven't done so, bookmark the top 15 or so dot NET sites along the way, many times a quick search, say at 4guysfromRoalla, Microsoft ASP.NET, GotdotNET and others, you can find the code you are looking for -
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top