Hello, I have been working on a hockey score sheet web data entry page and have gotten to the point where I prompt for
how many scores they want to enter then process that and return an HTML form with that many imput boxes.
My stumbling point at this point is how to dynamically create the drop down boxes for the player names based on the team name selected. I would think that I would need to ask for the two teams at the start (when I prompt for the number of scores) then, on the server side get all the names and imbed them in the returned HTML (in some format unkown to me at
this moment). That way on each line item, I could reference it maybe in Java or VB Script based on the team selected on that line item. But I am not sure.
The imput boxes look like this:
Period
Team (drop down list)
Time
Scorer (needs to reference the Team drop down)
1st Assist (needs to reference the Team drop down)
2nd Assist (needs to reference the Team drop down)
Any thoughts?