The following is modified for simplicity but i'd like to achieve the same outcome:
I have a drop down menu. The display is a column of a database (Last_Name)
I have 2 other columns that i'd like to fill text boxes with from the data in the row of the table. The 2 values I want to set for the drop down box are (First_Name) and (Middle). These 3 columns are exported XML from an Access table:
--------------------------------------------
|Last_Name | First_Name | Middle |
--------------------------------------------
|Brown | Joe | T |
|HAwk | Ace | A |
|Hull |John | J |
|Mack |Steve |H |
--------------------------------------------
The drop down will reference from the Data source the values of Last_Name, and fill 2 separate text boxes to the right of the drop down. This also must be in a **repeating section** so I can do a few names at a time. How can I go about doing such a task?
This is the simplified version, but I need these values to fill 2 separate text boxes but I'm doing some calculations. I think by displaying it this way it makes it easier. Can someone help me? Is it Jscript? or something else.