OK I have a form for a pricing request on my site which relates to an .asp form. The form on my site takes the information Product, Name, email, phone number, company, other comments etc.
This pricing request for is found on every product page on my site. I call the tag and parameters {get_a_quote product="somethingA" part_code="somethingApartcode"} and therefore on the form the product is automatically filled in (the part_code doesn't show on the form - it checks on a database whether something else is offered with this product and shows links accordingly)
What I am trying to do is enable the Product part of the form to be a combo box IF multiple products are available (i.e. a product may have two or three options)
My UDT currently is:
Code: Select all
<__iframe name="site" src="http://someipaddress/priceform/int-form1.asp?Product='.@$params['product'].'&PartCode='.@$params['part_code'].'" marginwidth="0" marginheight="0" noresize="" scrolling="auto" width="100%" height="1000" frameborder="0">
</__iframe>I am confused as to where I would make the changes and how I would do this. My UDT is obviously calling the .asp form which is auto filled with the Product, which is then displayed on my page for the rest of the info to be filled in and sent back.
I want this to work the same, although if say i have {get_a_quote product="somethingA" or product="somethingB"} then the user would be able to choose which, and this would feedback the chosen product into the email that is then sent to our quoting guys.
I guess there is also a problem as it is calling the asp form with the parameters already set... therefore it would need to reload the form to recheck the correct part_code.
I hope this kind of makes sense - please let me know if you need more information. I have tried for a while to try to understand how to explain this well and have looked around for anything similar but have struggled to find anything. I am actually quite new to this stuff and is quite indepth stuff to me!
I look forward to hearing from you
Thanks in advance

