J
John Bonds
I have made a Template column in my DataGrid that contains a DropDownList.
My main SQL query that is bound to this datagrid joins with another table in
the following way:
SELECT * FROM Customer
INNER JOIN Orders ON Orders.CustomerID = Customer.CustomerID
So I will get multiple rows returned for each customer per their orders.
I want to only show the customer once and have the DropDownList contain that
customer's orders. How do I do this?
Thanks,
John
My main SQL query that is bound to this datagrid joins with another table in
the following way:
SELECT * FROM Customer
INNER JOIN Orders ON Orders.CustomerID = Customer.CustomerID
So I will get multiple rows returned for each customer per their orders.
I want to only show the customer once and have the DropDownList contain that
customer's orders. How do I do this?
Thanks,
John