Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Year / Make / Model Dropdown

Status
Not open for further replies.

TunerRevolution

IS-IT--Management
Aug 29, 2008
4
0
0
US
Hello All! Heres my situation. I have inherited a website to redesign and have little experience with cold fusion. Ideally i would like to have three down downs Year, Make, Model. This will then link to a results page that shows all the product available for that application. I already have the database, and the results page that work. However in its currently form it is a scroll form ( meaning if you had a Volkswagen you would have to scroll all the way down) just inst visually appealing. Here is the code that is currently in use. Im not even sure where to start. Any direction would be greatly appreciated.

Code:
<b>Select Manufacturer:</b></font><font color="black" size="4"></font></p>
            <FORM action="PROD_DIR/SPC_PROD_SEARCH.cfm" method="POST" onSubmit="return require_MakeAndModelAndFrom_dt()">
 

              <CF_ThreeSelectsRelated
              query="get_cars"
              htmlafter2="<BR>"
              name1="Make"
              name2="Model"
              name3="From_dt"
              value1="Make"
              value2="Model"
              value3="From_dt & ', ' & To_dt"
              display1="Make"
              display2="Model"
              display3="From_dt & ' - ' & To_dt"
              default1="1"
              size1="6"
              size2="5"
              size3="3"
              width1="150"
              width2="150"
              width3="150"
              forcewidth1="110"
              forcewidth2="110"
              forcewidth3="110"
              autoselectfirst="No"
              multiple3="No"><BR><INPUT type="Submit" value="Submit!">
                </FORM>


If you need to see it live let me know.

Thanks!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top