|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How to populate other fields from first choice on input form
I have an ASP web form that I want to populate fields based on the first
field choice. Example I have 4 fields item, price, delivery, availability. I have all these items setup in an access table. When a user chooses an option from the item drop down, the price, delivery, availability will then populate. I have already made my connection to the database, and created the drop down for field one from the choices. How do I now populate the corresponding fields. Any info or helpful links would be greatly appreciated. -- Flanman "Flanman" <Flan***@discussions.microsoft.com> wrote in message Export the details for your products into an XML file to a web folder ornews:41070023-84A4-4F8D-A266-6A435E2EE890@microsoft.com... > I have an ASP web form that I want to populate fields based on the first > field choice. Example I have 4 fields item, price, delivery, availability. I > have all these items setup in an access table. When a user chooses an option > from the item drop down, the price, delivery, availability will then > populate. I have already made my connection to the database, and created the > drop down for field one from the choices. How do I now populate the > corresponding fields. Any info or helpful links would be greatly appreciated. alternatively create an ASP page to generate the products XML dynmically (although to benefit from client side caching some work with the headers will be necessary) Load the URL for the XML into an XML DOM when you page loads. On item selection lookup the item in the XML and populate the values of the fields from the XML entry. Anthony Show quote > -- > Flanman |
|||||||||||||||||||||||