ofnAntoniaGonterman
New Member
Hello,<BR><BR>I've just started using ASP .NET seriously and I've stumbled across something that I can't figure out. Here is what I am trying to do.<BR><BR>Let's say I have 3 tables, tblA, tblB, and tblC. tblA is the main table and can have any number of tblB records associated with it. tblB contains the tblA id, a text field, and an integer. The integer is a reference to a record in tblC. tblC has two integers and a description - it's a lookup table. <BR><BR>Here is my problem. When I want to update tblA I want to get the list of tblB records to update also. There should be a text field and then a dropdown list with values from tblC (the lookup table). <BR><BR>I'm not sure of how I should do this. Any help is greatly appreciated. If you could point me to any code or give me some code that would be great, but if you could tell me the basics of how I do this that would be great also. <BR><BR>Thanks,<BR>Nick<BR>Nevermind, I am using a datagrid now and it seems to work the way I want.