Hi guys I'm very new to
VB.Net and have a question about the use of a
Reapeater to load results from to 2 different tables. Heres what I mean.
DataBinder.Eval1 should display Products Name from Products table, DataBinder.
Eval2 should display ProductTypes from ProductType Table. They should load
for selection one at a time, Example:
Product: Shampoo: Productypes: Normal, Oily Hair, Dry Hair (slected with
radion buttons) -- click Next Button to select another Product with its
Product Type and so on ---- click Prev Button to look and/change previous
selection. I'm using 2 seperate queries to load Products and Product types
dynamically so not to have a limited number of Product types. This works fine
when loading all Products with respective Product types on one page but can't
get it to load one at a time.
What I got so far: Products load with DataBinder.Eval1 on Repeater1 and I'm
able to Next and Prev but the Products type do not load per gives Product
types not part of Product table error. So I added Repeater1 to handle
DataBinder.Eval2 and it loads 1 Product with ALL the product types.
Any Ideas???